SeekableStreamEndRead - метод
Пространство имён: Tessa.Platform.IOСборка: Tessa (в Tessa.dll) Версия: 4.2.2+a8f0dd3c063817b2e3f05a923303d808e447c338
public override int EndRead(
IAsyncResult asyncResult
)
Public Overrides Function EndRead (
asyncResult As IAsyncResult
) As Integer
public:
virtual int EndRead(
IAsyncResult^ asyncResult
) override
abstract EndRead :
asyncResult : IAsyncResult -> int
override EndRead :
asyncResult : IAsyncResult -> int
- asyncResult IAsyncResult
- The reference to the pending asynchronous request to finish.
Int32The number of bytes read from the stream, between zero (0) and the number of bytes requested. ReadAsync returns zero (0) only if zero bytes were requested or if no more bytes will be available because it's at the end of the stream; otherwise, read operations do not complete until at least one byte is available. If zero bytes are requested, read operations may complete immediately or may not complete until at least one byte is available (but without consuming any data).