Click or drag to resize
WriteBufferWrite Method
Writes the array segment identified by buffer, offset and count to the buffer.

Namespace: Lawo.IO
Assembly: Lawo (in Lawo.dll) Version: 1.4.1707.27006
Syntax
C#
public void Write(
	byte[] buffer,
	int offset,
	int count
)

Parameters

buffer
Type: SystemByte
offset
Type: SystemInt32
count
Type: SystemInt32
Exceptions
ExceptionCondition
ArgumentExceptionThe length of buffer is less than offset plus count.
ArgumentNullExceptionbuffer equals null.
ArgumentOutOfRangeExceptionoffset and/or count are negative.
InvalidOperationExceptionThe WriteBuffer object was created by calling WriteBuffer(WriteAsyncCallback, Int32).
Remarks
The buffer is flushed as necessary.
See Also