WorkflowControlClient.RunAsync Method

Definition

Begins an asynchronous operation that runs the specified workflow instance.

Overloads

RunAsync(Guid)

Begins an asynchronous operation that runs the specified workflow instance.

RunAsync(Guid, Object)

Begins an asynchronous operation that runs the specified workflow instance with the user-defined state data.

RunAsync(Guid)

Begins an asynchronous operation that runs the specified workflow instance.

public:
 void RunAsync(Guid instanceId);
public void RunAsync (Guid instanceId);
member this.RunAsync : Guid -> unit
Public Sub RunAsync (instanceId As Guid)

Parameters

instanceId
Guid

The workflow instance to run.

Remarks

This method stores in the task it returns all non-usage exceptions that the method's synchronous counterpart can throw. If an exception is stored into the returned task, that exception will be thrown when the task is awaited. Usage exceptions, such as ArgumentException, are still thrown synchronously. For the stored exceptions, see the exceptions thrown by Run(Guid).

Applies to

RunAsync(Guid, Object)

Begins an asynchronous operation that runs the specified workflow instance with the user-defined state data.

public:
 void RunAsync(Guid instanceId, System::Object ^ userState);
public void RunAsync (Guid instanceId, object userState);
member this.RunAsync : Guid * obj -> unit
Public Sub RunAsync (instanceId As Guid, userState As Object)

Parameters

instanceId
Guid

The workflow instance to run.

userState
Object

The user-defined state data.

Applies to