GZipStream.EndWrite(IAsyncResult) Method

Definition

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

public:
 override void EndWrite(IAsyncResult ^ asyncResult);
public:
 override void EndWrite(IAsyncResult ^ async_result);
public override void EndWrite (IAsyncResult asyncResult);
public override void EndWrite (IAsyncResult async_result);
override this.EndWrite : IAsyncResult -> unit
override this.EndWrite : IAsyncResult -> unit
Public Overrides Sub EndWrite (asyncResult As IAsyncResult)
Public Overrides Sub EndWrite (async_result As IAsyncResult)

Parameters

asyncResultasync_result
IAsyncResult

The object that represents the asynchronous call.

Exceptions

The underlying stream is null.

-or-

The underlying stream is closed.

Remarks

Starting with the .NET Framework 4.5, you can perform asynchronous write operations by using the Stream.WriteAsync method. The EndWrite method is still available in .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 Asynchronous File I/O.

The EndWrite method completes the asynchronous write operation started in the BeginWrite method.

Applies to