ShieldedStreamBeginRead Method |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Begins an asynchronous read operation.
Namespace:
Tangosol.Util
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntaxpublic override IAsyncResult BeginRead(
byte[] buffer,
int offset,
int count,
AsyncCallback callback,
Object state
)
Parameters
- buffer
- Type: SystemByte
The buffer to read the data into.
- offset
- Type: SystemInt32
The byte offset in buffer at which to begin writing data read
from the stream.
- count
- Type: SystemInt32
The maximum number of bytes to read.
- callback
- Type: SystemAsyncCallback
An optional asynchronous callback, to be called when the read is
complete.
- state
- Type: SystemObject
A user-provided object that distinguishes this particular
asynchronous read request from other requests.
Field Value
Type:
IAsyncResult
An
IAsyncResult that represents the
asynchronous read, which could still be pending.
Return Value
Type:
IAsyncResult
An
IAsyncResult.
See Also