Click or drag to resize
ReadCallback Delegate
References a method to be called when bytes need to be read from a source.

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

Parameters

buffer
Type:System.Byte[]
offset
Type: System.Int32
count
Type: System.Int32

Return Value

Type: Int32
Remarks
The referenced method must behave like Read(Byte[], Int32, Int32). Notably, calling code will assume that ObjectDisposedException is thrown when the object representing the source has been disposed.
See Also