Edit

Share via


WorkflowRuntime.WorkflowAborted Event

Definition

Occurs when a workflow instance is aborted.

public:
 event EventHandler<System::Workflow::Runtime::WorkflowEventArgs ^> ^ WorkflowAborted;
public event EventHandler<System.Workflow.Runtime.WorkflowEventArgs> WorkflowAborted;
member this.WorkflowAborted : EventHandler<System.Workflow.Runtime.WorkflowEventArgs> 
Public Custom Event WorkflowAborted As EventHandler(Of WorkflowEventArgs) 
Public Event WorkflowAborted As EventHandler(Of WorkflowEventArgs) 

Event Type

Remarks

WorkflowAborted occurs after all pending work for the workflow instance is cleared, but before the workflow instance is invalidated in memory. You can abort a workflow instance by calling WorkflowInstance.Abort.

For this event, the sender contains the WorkflowRuntime and WorkflowEventArgs contains the WorkflowInstance associated with the event.

For more information about handling events, see Handling and raising events.

Applies to