WorkflowControlClient.AbandonAsync Method

Definition

Begins an asynchronous operation that abandons the specified workflow instance.

Overloads

AbandonAsync(Guid)

Begins an asynchronous operation that abandons the specified workflow instance.

AbandonAsync(Guid, Object)

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

AbandonAsync(Guid, String)

Begins an asynchronous operation that abandons the specified workflow instance with the specified reason.

AbandonAsync(Guid, String, Object)

Begins an asynchronous operation that abandons the specified workflow instance with the specified reason and user-defined data.

AbandonAsync(Guid)

Begins an asynchronous operation that abandons the specified workflow instance.

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

Parameters

instanceId
Guid

The workflows instance to abandon.

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

Applies to

AbandonAsync(Guid, Object)

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

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

Parameters

instanceId
Guid

The workflow instance to abandon.

userState
Object

The user-defined state data.

Applies to

AbandonAsync(Guid, String)

Begins an asynchronous operation that abandons the specified workflow instance with the specified reason.

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

Parameters

instanceId
Guid

The workflow instance to abandon.

reason
String

The reason to abandon 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 Abandon(Guid, String).

Applies to

AbandonAsync(Guid, String, Object)

Begins an asynchronous operation that abandons the specified workflow instance with the specified reason and user-defined data.

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

Parameters

instanceId
Guid

The workflow instance to abandon.

reason
String

The reason to abandon the workflow instance.

userState
Object

The user-defined state data.

Applies to