MobileForms Toolkit Documentation

ZipStream.EndRead Method 

Waits for the pending asynchronous read to complete.

public override int EndRead(
IAsyncResult asyncResult
);

Parameters

asyncResult
The reference to the pending asynchronous request to wait for.

Return Value

The number of bytes read from the stream, between 0 and the number of bytes you requested. Streams only return 0 at the end of the stream, otherwise, they should block until at least 1 byte is available.

Remarks

This method overrides EndRead.

EndRead can be called on every IAsyncResult from BeginRead. Calling EndRead tells you how many bytes were read from the stream. EndRead will block until the I/O operation has completed.

See Also

ZipStream Class | Resco.IO.Zip Namespace