BinaryStreamBaseReadAll(Byte, Int32, Int32) Method

Reads all of the provided bytes. Will not return prematurely, but continue to execute a Read(Byte, Int32, Int32) command until the entire length has been read.

Definition

Namespace: SnapDB.IO
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public void ReadAll(
	byte[] buffer,
	int position,
	int length
)

Parameters

buffer  Byte
position  Int32
length  Int32

Exceptions

EndOfStreamExceptionoccurs if the end of the stream has been reached.

See Also