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

Begins an asynchronous write operation.

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

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

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

See Also