Click or drag to resize

ShieldedStreamEndRead Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Waits for the pending asynchronous read to complete.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public override int EndRead(
	IAsyncResult asyncResult
)

Parameters

asyncResult
Type: SystemIAsyncResult
The reference to the pending asynchronous request to finish.

Field Value

Type: Int32
The number of bytes read from the stream, between zero (0) and the number of bytes you requested. Streams return zero (0) only at the end of the stream, otherwise, they should block until at least one byte is available.

Return Value

Type: Int32
The number of bytes read from the stream or 0 if end of the stream is reached.
See Also