IWorkflowInstanceManagement.BeginAbandon Method

Definition

Begins an asynchronous operation to abandon the specified workflow instance.

public:
 IAsyncResult ^ BeginAbandon(Guid instanceId, System::String ^ reason, AsyncCallback ^ callback, System::Object ^ state);
[System.ServiceModel.OperationContract(AsyncPattern=true, Name="Abandon")]
public IAsyncResult BeginAbandon (Guid instanceId, string reason, AsyncCallback callback, object state);
[<System.ServiceModel.OperationContract(AsyncPattern=true, Name="Abandon")>]
abstract member BeginAbandon : Guid * string * AsyncCallback * obj -> IAsyncResult
Public Function BeginAbandon (instanceId As Guid, reason As String, callback As AsyncCallback, state As Object) As IAsyncResult

Parameters

instanceId
Guid

The GUID identifier of the workflow instance to abandon.

reason
String

The reason for abandoning the workflow instance.

callback
AsyncCallback

The asynchronous callback delegate that receives the notification of the asynchronous operation completion.

state
Object

An object, specified by the application, that contains state information associated with the asynchronous abandon operation.

Returns

The IAsyncResult.

Attributes

Remarks

The abandon process terminates the workflow instance, destroys all the associated objects, and releases the associated resources.

Applies to