Click or drag to resize
ReadBufferFill Method (Int32)
Ensures that count <= (Count - Index).

Namespace: Lawo.IO
Assembly: Lawo (in Lawo.dll) Version: 1.4.1707.27006
Syntax
C#
public void Fill(
	int count
)

Parameters

count
Type: SystemInt32
The minimum number of bytes that will be available when this method returns.
Exceptions
ExceptionCondition
EndOfStreamExceptionThe end of the stream has been reached before the buffer could be filled to count bytes.
InvalidOperationExceptionThe ReadBuffer object was created by calling ReadBuffer(ReadAsyncCallback, Int32).
Remarks
Reads bytes into the buffer by repeatedly calling the callback specified during construction until at least count bytes are available.
See Also