Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Begins an asynchronous read operation.

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

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

An IAsyncResult.

See Also