WorkflowEnvironment.WorkflowInstanceId Property
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.
Gets the Guid of the workflow instance associated with the current thread.
public:
static property Guid WorkflowInstanceId { Guid get(); };
public static Guid WorkflowInstanceId { get; }
static member WorkflowInstanceId : Guid
Public Shared ReadOnly Property WorkflowInstanceId As Guid
Property Value
The Guid that identifies the current workflow instance.
Remarks
WorkflowInstanceId contains the Guid of the workflow instance currently running in this thread. Whenever code is run from within a workflow thread, you can get the Guid of the workflow instance through the WorkflowInstanceId property. For example, if your code is in a service called by an activity, WorkflowInstanceId will provide Guid of the workflow instance for the calling activity.