|
BlockAllocatedMemoryStreamRead Method
|
Reads a block of bytes from the current stream and writes the data to buffer.
Namespace: GSF.IOAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.275-beta+5a507085c1b79f1427cd1812b9c3c9c583c21079
Syntaxpublic override int Read(
byte[] buffer,
int startIndex,
int length
)
Public Overrides Function Read (
buffer As Byte(),
startIndex As Integer,
length As Integer
) As Integer
public:
virtual int Read(
array<unsigned char>^ buffer,
int startIndex,
int length
) override
abstract Read :
buffer : byte[] *
startIndex : int *
length : int -> int
override Read :
buffer : byte[] *
startIndex : int *
length : int -> int function Read(buffer, startIndex, length);
View SourceParameters
- buffer Byte
- When this method returns, contains the specified byte array with the values between startIndex and (startIndex + length - 1) replaced by the characters read from the current stream.
- startIndex Int32
- The byte offset in buffer at which to begin reading.
- length Int32
- The maximum number of bytes to read.
Return Value
Int32
The total number of bytes written into the buffer. This can be less than the number of bytes requested if that number of bytes are not currently available, or zero if the end of the stream is reached before any bytes are read.
Exceptions| Exception | Condition |
|---|
| ArgumentNullException | buffer is null. |
| ArgumentOutOfRangeException | startIndex or length is less than 0 -or-
startIndex and length will exceed buffer length.
|
| ObjectDisposedException | The stream is closed. |
See Also