Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

WorkflowRuntime::WorkflowTerminated Event

 

Occurs when a workflow instance is terminated.

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

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

The workflow can be terminated by the host through a call to the Terminate method, by a TerminateActivity activity, or by the workflow run-time engine when an unhandled exception occurs. The workflow run-time engine raises the WorkflowTerminated event after the workflow instance is terminated, but before it is invalidated in memory.

For the WorkflowPersisted event, the sender contains the WorkflowRuntime and WorkflowTerminatedEventArgs contains the WorkflowInstance and information about the reason the instance was terminated in the WorkflowTerminatedEventArgs::Exception property.

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 WorkflowCompleted with an event handler, a method named OnWorkflowCompleted.

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:
© 2017 Microsoft