WorkflowRuntime.WorkflowAborted Event

Definition

Occurs when a workflow instance is aborted.

C#
public event EventHandler<System.Workflow.Runtime.WorkflowEventArgs> WorkflowAborted;

Event Type

Examples

The following code example demonstrates how to use WorkflowRuntime functionality from a workflow host. The code associates the WorkflowAborted with an event handler, a method named OnWorkflowAborted.

This code example is part of the Canceling a Workflow sample.

C#
workflowRuntime.WorkflowAborted += OnWorkflowAborted;

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

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1