IsolatedStorageFileStream::EndRead Method (IAsyncResult^)
.NET Framework (current version)
Ends a pending asynchronous read request.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- asyncResult
-
Type:
System::IAsyncResult^
The pending asynchronous request.
Return Value
Type: System::Int32The 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.
| Exception | Condition |
|---|---|
| ArgumentNullException | The asyncResult is null. |
EndRead must be called exactly once on every IAsyncResult object from BeginRead, and calling EndRead is the only way to know how many bytes were read from the Stream. EndRead will block until the I/O operation has completed.
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: