WorkflowApplication.EndTerminate(IAsyncResult) Method

Definition

Waits for the pending asynchronous terminate operation to complete.

public:
 void EndTerminate(IAsyncResult ^ result);
public void EndTerminate (IAsyncResult result);
member this.EndTerminate : IAsyncResult -> unit
Public Sub EndTerminate (result As IAsyncResult)

Parameters

result
IAsyncResult

The asynchronous terminate operation.

Remarks

This method can be called to determine whether a BeginTerminate operation was successful. If called before the terminate operation completes, it blocks until the operation is complete.

This method completes an asynchronous BeginTerminate operation using the IAsyncResult asynchronous design pattern. For more information, see Asynchronous Programming Overview.

Applies to