WorkflowUpdateableControlClient.AbandonAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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. |
AbandonAsync(Guid, String) |
Begins an asynchronous operation that abandons the specified workflow instance. |
AbandonAsync(Guid, String, Object) |
Begins an asynchronous operation that abandons the specified workflow instance. |
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.
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 workflows instance to abandon.
- userState
- Object
A user-defined object that contains state information associated with the asynchronous abandon operation.
Applies to
AbandonAsync(Guid, String)
Begins an asynchronous operation that abandons the specified workflow instance.
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 workflows 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.
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 workflows instance to abandon.
- reason
- String
The reason to abandon the workflow instance.
- userState
- Object
A user-defined object that contains state information associated with the asynchronous abandon operation.