- buffer
- When this method returns, contains the specified byte array with the values between offset and (offset + count - 1) replaced by the bytes read from the current source. This parameter is passed uninitialized.
- offset
- The zero-based byte offset in buffer at which to begin storing the data read from the current stream.
- count
- The maximum number of bytes to read from the current stream.
The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.
The offset parameter gives the offset of the byte in the array parameter (the buffer index) at which to begin reading, and the count parameter gives the maximum number of bytes to be read from this stream. The returned value is the actual number of bytes read, or zero if the end of the stream is reached. If the read operation is successful, the current position of the stream is advanced by the number of bytes read. If an exception occurs, the current position of the stream is unchanged.
The UnmanagedMemoryStream.Read(Byte[], int, int) method returns zero only after reaching the end of the stream. Otherwise, UnmanagedMemoryStream.Read(Byte[], int, int) always reads at least one byte from the stream before returning. If no data is available from the stream upon a call to UnmanagedMemoryStream.Read(Byte[], int, int), the method will block until at least one byte of data can be returned. An implementation is free to return fewer bytes than requested even if the end of the stream has not been reached.