WorkflowApplication.EndTerminate(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.
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.