DeflateStream.EndWrite(IAsyncResult) Method

Definition

Ends an asynchronous write operation. (Consider using the WriteAsync(Byte[], Int32, Int32) method instead.)

C#
public override void EndWrite(IAsyncResult asyncResult);

Parameters

asyncResult
IAsyncResult

A reference to the outstanding asynchronous I/O request.

Exceptions

asyncResult is null.

asyncResult did not originate from a BeginWrite(Byte[], Int32, Int32, AsyncCallback, Object) method on the current stream.

An exception was thrown during a call to WaitOne().

The stream is null.

-or-

The end write call is invalid.

Remarks

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

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.

Applies to

Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1