WorkflowApplication.EndRun(IAsyncResult) Method

Definition

Waits for the pending asynchronous run operation to complete.

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

Parameters

result
IAsyncResult

The asynchronous run operation.

Remarks

This method determines whether a BeginRun operation was successful. If called before the resume operation completes, it blocks until the resume operation is complete.

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

Applies to