BlockAllocatedMemoryStreamRead(Byte, Int32, Int32) Method
Reads a block of bytes from the current stream and writes the data to buffer.
Namespace: Gemstone.IOAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.172 -- Release Build+241430fabc9f8d815f226ef82f939af6835b2b48
public override int Read(
byte[] buffer,
int startIndex,
int length
)
function Read(buffer, startIndex, length);
- 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.
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.