Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Begins an asynchronous read operation.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)

Syntax

C#
public override IAsyncResult BeginRead(
	byte[] buffer,
	int offset,
	int count,
	AsyncCallback callback,
	Object state
)

Parameters

buffer
Type: array< System..::.Byte >[]()[]
The buffer to read the data into.
offset
Type: System..::.Int32
The byte offset in buffer at which to begin writing data read from the stream.
count
Type: System..::.Int32
The maximum number of bytes to read.
callback
Type: System..::.AsyncCallback
An optional asynchronous callback, to be called when the read is complete.
state
Type: System..::.Object
A user-provided object that distinguishes this particular asynchronous read request from other requests.

Field Value

An IAsyncResult that represents the asynchronous read, which could still be pending.

Return Value

[Missing <returns> documentation for "M:Tangosol.Util.ShieldedStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)"]

See Also