WorkflowTerminatedEventArgs Class
Assembly: System.Workflow.Runtime (in system.workflow.runtime.dll)
A workflow instance may be terminated in one of three ways: the host may call WorkflowInstance.Terminate, a TerminateActivity activity may be invoked from inside the workflow instance, or the workflow runtime engine may terminate the instance because of an unhandled exception. When the workflow instance is terminated, the workflow runtime engine raises the WorkflowRuntime.WorkflowTerminated event. The host may subscribe to this event by adding an event handler to WorkflowRuntime.WorkflowTerminated.
The following code example demonstrates an event handler method that takes WorkflowTerminatedEventArgs as a parameter. The OnWorkflowTerminated method is called when the WorkflowTerminated event is raised. The code uses the Exception property get the message associated with the exception that caused the workflow to terminate.
This code example is part of the Sequential Workflow with Parameters SDK Sample from the Program.cs file. For more information, see Sequential Workflow with Parameters.
static void OnWorkflowTerminated(object sender, WorkflowTerminatedEventArgs e) { Console.WriteLine(e.Exception.Message); waitHandle.Set(); }
System.EventArgs
System.Workflow.Runtime.WorkflowEventArgs
System.Workflow.Runtime.WorkflowTerminatedEventArgs
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.