WorkflowInvoker::InvokeAsync Method
Invokes a workflow asynchronously using the event-based asynchronous design pattern.
Assembly: System.Activities (in System.Activities.dll)
| Name | Description | |
|---|---|---|
![]() | InvokeAsync() | Invokes a workflow asynchronously. |
![]() | InvokeAsync(IDictionary<String^, Object^>^) | Invokes a workflow asynchronously using the specified IDictionary<TKey, TValue> of input parameters. |
![]() | InvokeAsync(IDictionary<String^, Object^>^, Object^) | Invokes a workflow asynchronously using the specified IDictionary<TKey, TValue> of input parameters and a unique identifier. |
![]() | InvokeAsync(IDictionary<String^, Object^>^, TimeSpan) | Invokes a workflow asynchronously with the specified IDictionary<TKey, TValue> of input parameters and the specified time-out interval. |
![]() | InvokeAsync(IDictionary<String^, Object^>^, TimeSpan, Object^) | Invokes a workflow asynchronously with the specified IDictionary<TKey, TValue> of input parameters, the specified time-out interval, and a unique identifier. |
![]() | InvokeAsync(Object^) | Invokes a workflow asynchronously using the specified unique identifier. |
![]() | InvokeAsync(TimeSpan) | Invokes a workflow asynchronously with the specified time-out interval. |
![]() | InvokeAsync(TimeSpan, Object^) | Invokes a workflow asynchronously with the specified time-out interval and a unique identifier. |
To be notified when the workflow is complete, handle InvokeCompleted. To configure a time-out interval in which the workflow must complete, use one of the InvokeAsync overloads that take a TimeSpan.
This method invokes a workflow asynchronously using the event-based asynchronous design pattern. For more information, seeEvent-based Asynchronous Pattern Overview.
