WorkflowInstance.WorkflowInstanceControl.Abort Method

Definition

Aborts the WorkflowInstance.

Overloads

Abort()

Aborts the WorkflowInstance.

Abort(Exception)

Aborts the WorkflowInstance using the specified exception.

Remarks

Once Abort is called, most WorkflowInstance.WorkflowInstanceControl APIs except Abort throw an InvalidOperationException.

Abort()

Aborts the WorkflowInstance.

public:
 void Abort();
public void Abort ();
member this.Abort : unit -> unit
Public Sub Abort ()

Remarks

Once Abort is called, most WorkflowInstance.WorkflowInstanceControl APIs except Abort throw an InvalidOperationException.

Applies to

Abort(Exception)

Aborts the WorkflowInstance using the specified exception.

public:
 void Abort(Exception ^ reason);
public void Abort (Exception reason);
member this.Abort : Exception -> unit
Public Sub Abort (reason As Exception)

Parameters

reason
Exception

The reason for aborting the WorkflowInstance.

Remarks

Once Abort is called, most WorkflowInstance.WorkflowInstanceControl APIs except Abort throw an InvalidOperationException.

Applies to