IsolatedStorageFileStream.EndWrite Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Ends an asynchronous write.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- asyncResult
- Type: System.IAsyncResult
The pending asynchronous I/O request to end.
| Exception | Condition |
|---|---|
| IsolatedStorageException | The isolated store has been removed. -or- Isolated storage is disabled. |
| ArgumentException | asyncResult was not created by calling BeginWrite on this class. |
| ArgumentNullException | asyncResult is Nothing. |
| InvalidOperationException | EndWrite is called multiple times. |
| IOException | The stream is closed or an internal error has occurred. |
| ObjectDisposedException | The stream has been disposed. |
EndWrite must be called exactly once on every IAsyncResult from BeginWrite.
EndWrite will block until the I/O operation has completed.