WorkflowRuntime::WorkflowAborted Event

 

Occurs when a workflow instance is aborted.

Namespace:   System.Workflow.Runtime
Assembly:  System.Workflow.Runtime (in System.Workflow.Runtime.dll)

public:
event EventHandler<WorkflowEventArgs^>^ WorkflowAborted {
	void add(EventHandler<WorkflowEventArgs^>^ value);
	void remove(EventHandler<WorkflowEventArgs^>^ value);
}

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 Consuming Events.

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: