Click or drag to resize

ShieldedStreamBeginWrite Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Begins an asynchronous write operation.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public override IAsyncResult BeginWrite(
	byte[] buffer,
	int offset,
	int count,
	AsyncCallback callback,
	Object state
)

Parameters

buffer
Type: SystemByte
The buffer to write data from.
offset
Type: SystemInt32
The byte offset in buffer from which to begin writing.
count
Type: SystemInt32
The maximum number of bytes to write.
callback
Type: SystemAsyncCallback
An optional asynchronous callback, to be called when the write is complete.
state
Type: SystemObject
A user-provided object that distinguishes this particular asynchronous write request from other requests.

Field Value

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

Return Value

Type: IAsyncResult
An IAsyncResult.
See Also