WorkflowApplicationEventArgs::InstanceId Property
.NET Framework (current version)
The unique identifier of the workflow instance.
Assembly: System.Activities (in System.Activities.dll)
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
Available since 4.0
Show: