SqlTrackingWorkflowInstance.InvokedWorkflows 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 a list of SqlTrackingWorkflowInstance objects that correspond to workflows that have been invoked by this workflow.
public:
property System::Collections::Generic::IList<System::Workflow::Runtime::Tracking::SqlTrackingWorkflowInstance ^> ^ InvokedWorkflows { System::Collections::Generic::IList<System::Workflow::Runtime::Tracking::SqlTrackingWorkflowInstance ^> ^ get(); };
public System.Collections.Generic.IList<System.Workflow.Runtime.Tracking.SqlTrackingWorkflowInstance> InvokedWorkflows { get; }
member this.InvokedWorkflows : System.Collections.Generic.IList<System.Workflow.Runtime.Tracking.SqlTrackingWorkflowInstance>
Public ReadOnly Property InvokedWorkflows As IList(Of SqlTrackingWorkflowInstance)
Property Value
A list of SqlTrackingWorkflowInstance objects that correspond to workflows that have been invoked by this workflow.
Remarks
If AutoRefresh is true
, InvokedWorkflows contains a SqlTrackingWorkflowInstance for each of the workflow instances that has been invoked by this workflow instance up to the current time; if AutoRefresh is false
, InvokedWorkflows contains a SqlTrackingWorkflowInstance for each of the workflow instances that has been invoked by this workflow instance up until the last Refresh.
The contents of this property are determined by the tracking data for this workflow instance contained in the SQL database managed by the SqlTrackingService. This tracking data corresponds to tracking records that are sent by the run-time tracking infrastructure for tracking events that are specified by the track points in the TrackingProfile associated with this workflow instance.