RemoteBinaryStreamRead Method

Reads a specified number of bytes from the stream into a byte array, starting at the specified offset.

Definition

Namespace: SnapDB.IO
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public override int Read(
	byte[] buffer,
	int offset,
	int count
)

Parameters

buffer  Byte
The byte array where the read data will be stored.
offset  Int32
The offset in the byte array where reading will start.
count  Int32
The maximum number of bytes to read.

Return Value

Int32
The total number of bytes read into the buffer.

See Also