WorkflowRuntime.WorkflowCompleted Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when a workflow instance has completed.
public:
event EventHandler<System::Workflow::Runtime::WorkflowCompletedEventArgs ^> ^ WorkflowCompleted;
public event EventHandler<System.Workflow.Runtime.WorkflowCompletedEventArgs> WorkflowCompleted;
member this.WorkflowCompleted : EventHandler<System.Workflow.Runtime.WorkflowCompletedEventArgs>
Public Custom Event WorkflowCompleted As EventHandler(Of WorkflowCompletedEventArgs)
Public Event WorkflowCompleted As EventHandler(Of WorkflowCompletedEventArgs)
Event Type
Remarks
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 Handling and raising events.