SeekableStreamEndRead - метод

Waits for the pending asynchronous read to complete. (Consider using ReadAsync(Byte, Int32, Int32) instead.)

Definition

Пространство имён: Tessa.Platform.IO
Сборка: Tessa (в Tessa.dll) Версия: 3.6.0.22
C#
public override int EndRead(
	IAsyncResult asyncResult
)

Параметры

asyncResult  IAsyncResult
The reference to the pending asynchronous request to finish.

Возвращаемое значение

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.

Исключения

ArgumentNullExceptionasyncResult is .
ArgumentExceptionA handle to the pending read operation is not available. -or- The pending operation does not support reading.
InvalidOperationExceptionasyncResult did not originate from a BeginRead(Byte, Int32, Int32, AsyncCallback, Object) method on the current stream.
IOExceptionThe stream is closed or an internal error has occurred.

См. также