WorkflowRuntime::WorkflowCompleted Event

 

Occurs when a workflow instance has completed.

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

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

WorkflowCompleted is raised after the workflow instance has completed but before the instance is invalidated in memory.

For the WorkflowPersisted event, the sender contains the WorkflowRuntime and WorkflowCompletedEventArgs contains the WorkflowInstance and its output parameters.

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: