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

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

Syntax

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

Parameters

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

Field Value

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

Return Value

An IAsyncResult.

See Also