The number of bytes read from the stream, between zero and the number of requested bytes. Streams will only return zero at the end of the stream. Otherwise, they will block until at least one byte is available.
IsolatedStorageFileStream.EndRead(IAsyncResult) must be called exactly once on every IAsyncResult object from IsolatedStorageFileStream.BeginRead(Byte[], int, int, AsyncCallback, object), and calling IsolatedStorageFileStream.EndRead(IAsyncResult) is the only way to know how many bytes were read from the System.IO.Stream. IsolatedStorageFileStream.EndRead(IAsyncResult) will block until the I/O operation has completed.