Call.EndHandleTermination(IAsyncResult) Method

Definition

This method is used to determine whether the corresponding operation completed successfully. This method will wait if the operation has not yet completed.

protected:
 virtual void EndHandleTermination(IAsyncResult ^ result);
protected virtual void EndHandleTermination (IAsyncResult result);
abstract member EndHandleTermination : IAsyncResult -> unit
override this.EndHandleTermination : IAsyncResult -> unit
Protected Overridable Sub EndHandleTermination (result As IAsyncResult)

Parameters

result
IAsyncResult

The reference to the pending asynchronous operation.

Remarks

This method should not throw any exceptions. Therefore, derived class implementations should make sure that it does not throw any exceptions.

Applications implementing this method should also implement BeginHandleTermination(AsyncCallback, Object).

Applies to