Stream.EndWrite Method
Ends an asynchronous write operation.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- asyncResult
- Type: System.IAsyncResult
A reference to the outstanding asynchronous I/O request.
| Exception | Condition |
|---|---|
| ArgumentNullException | asyncResult is Nothing. |
| ArgumentException | asyncResult did not originate from a BeginWrite method on the current stream. |
| IOException | The stream is closed or an internal error has occurred. |
EndWrite must be called exactly once on every IAsyncResult from BeginWrite.
This method blocks until the I/O operation has completed. Errors that occur during an asynchronous write request, such as a disk failure during the I/O request, occur on the thread pool thread and become visible upon a call to EndWrite. Exceptions thrown by the thread pool thread will not be visible when calling EndWrite.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.