WorkflowTrackingLocation Constructors

Definition

Initializes a new instance of the WorkflowTrackingLocation class.

Overloads

WorkflowTrackingLocation()

Initializes a new instance of the WorkflowTrackingLocation class.

WorkflowTrackingLocation(IList<TrackingWorkflowEvent>)

Initializes a new instance of the WorkflowTrackingLocation class that matches the specified tracking workflow events.

WorkflowTrackingLocation()

Initializes a new instance of the WorkflowTrackingLocation class.

public:
 WorkflowTrackingLocation();
public WorkflowTrackingLocation ();
Public Sub New ()

Remarks

No workflow status events to match are specified. You must add TrackingWorkflowEvent values to Events for the WorkflowTrackingLocation to match any workflow status events.

Applies to

WorkflowTrackingLocation(IList<TrackingWorkflowEvent>)

Initializes a new instance of the WorkflowTrackingLocation class that matches the specified tracking workflow events.

public:
 WorkflowTrackingLocation(System::Collections::Generic::IList<System::Workflow::Runtime::Tracking::TrackingWorkflowEvent> ^ events);
public WorkflowTrackingLocation (System.Collections.Generic.IList<System.Workflow.Runtime.Tracking.TrackingWorkflowEvent> events);
new System.Workflow.Runtime.Tracking.WorkflowTrackingLocation : System.Collections.Generic.IList<System.Workflow.Runtime.Tracking.TrackingWorkflowEvent> -> System.Workflow.Runtime.Tracking.WorkflowTrackingLocation
Public Sub New (events As IList(Of TrackingWorkflowEvent))

Parameters

events
IList<TrackingWorkflowEvent>

IList of tracking workflow events to be matched.

Applies to