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.

WorkflowApplication::Unloaded Property

.NET Framework (current version)
 

Gets or sets the Action<T> that is invoked when the current workflow unloads.

Namespace:   System.Activities
Assembly:  System.Activities (in System.Activities.dll)

public:
property Action<WorkflowApplicationEventArgs^>^ Unloaded {
	Action<WorkflowApplicationEventArgs^>^ get();
	void set(Action<WorkflowApplicationEventArgs^>^ value);
}

Property Value

Type: System::Action<WorkflowApplicationEventArgs^>^

An action that is invoked when a workflow instance is unloaded.

The following code example inspects the WorkflowApplicationEventArgs passed into the Unloaded handler of a WorkflowApplication instance and displays the InstanceId of the workflow that was unloaded.

wfApp.Unloaded = delegate(WorkflowApplicationEventArgs e)
{
    Console.WriteLine("Workflow {0} unloaded.", e.InstanceId);
};

.NET Framework
Available since 4.0
Return to top
Show:
© 2017 Microsoft