WriteRange(IntPtr,Int64) Method
In This Topic
Writes a range of bytes to the current stream, and advances the current position within this stream by the number of bytes written.
Syntax
'Declaration
Public Overloads Sub WriteRange( _
ByVal As System.IntPtr, _
ByVal As System.Long _
)
public void WriteRange(
System.IntPtr ,
System.long
)
Parameters
- source
- A pointer to the location to start copying from.
- count
- The number of bytes to copy from source to the current stream.
Exceptions
Exception | Description |
System.NotSupportedException | This stream does not support writing. |
See Also