Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DeflateStream::EndWrite Method (IAsyncResult^)

 

Ends an asynchronous write operation. (Consider using the Stream::WriteAsync method instead; see the Remarks section.)

Namespace:   System.IO.Compression
Assembly:  System (in System.dll)

public:
virtual void EndWrite(
	IAsyncResult^ asyncResult
) override

Parameters

asyncResult
Type: System::IAsyncResult^

A reference to the outstanding asynchronous I/O request.

Exception Condition
ArgumentNullException

asyncResult is null.

ArgumentException

asyncResult did not originate from a BeginWrite method on the current stream.

Exception

An exception was thrown during a call to WaitOne.

InvalidOperationException

The stream is null.

InvalidOperationException

The end write call is invalid.

Starting with the .NET Framework 4.5, you can perform asynchronous write operations by using the WriteAsync method. The EndWrite method is still available in the .NET Framework 4.5 to support legacy code; however, you can implement asynchronous I/O operations more easily by using the new async methods. For more information, see .

EndWrite must be called only once for every call to the BeginWrite method.

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.

.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Return to top
Show:
© 2017 Microsoft