Call.EndHandleTermination(IAsyncResult) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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).