WorkflowUpdateableControlClient.SuspendAsync Method

Definition

Begins an asynchronous suspend operation.

Overloads

SuspendAsync(Guid)

Begins an asynchronous suspend operation.

SuspendAsync(Guid, Object)

Begins an asynchronous suspend operation.

SuspendAsync(Guid, String)

Begins an asynchronous suspend operation.

SuspendAsync(Guid, String, Object)

Begins an asynchronous suspend operation.

SuspendAsync(Guid)

Begins an asynchronous suspend operation.

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

Parameters

instanceId
Guid

The workflow instance to suspend.

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 Suspend(Guid).

Applies to

SuspendAsync(Guid, Object)

Begins an asynchronous suspend operation.

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

Parameters

instanceId
Guid

The workflow instance to suspend.

userState
Object

A user-defined object that contains state information associated with the asynchronous suspend operation.

Applies to

SuspendAsync(Guid, String)

Begins an asynchronous suspend operation.

public:
 void SuspendAsync(Guid instanceId, System::String ^ reason);
public void SuspendAsync (Guid instanceId, string reason);
member this.SuspendAsync : Guid * string -> unit
Public Sub SuspendAsync (instanceId As Guid, reason As String)

Parameters

instanceId
Guid

The workflow instance to suspend.

reason
String

The reason to suspend the workflow instance.

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 Suspend(Guid, String).

Applies to

SuspendAsync(Guid, String, Object)

Begins an asynchronous suspend operation.

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

Parameters

instanceId
Guid

The workflow instance to suspend.

reason
String

The reason to suspend the workflow instance.

userState
Object

A user-defined object that contains state information associated with the asynchronous run operation.

Applies to