SeekableStreamEndRead - метод
Пространство имён: Tessa.Platform.IOСборка: Tessa (в Tessa.dll) Версия: 4.2.0+ffad8363f63902f18b3b3f4cfa533a14b2fb19a6
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).