WorkflowTrackPointCollection Constructors

Definition

Initializes a new instance of the WorkflowTrackPointCollection class.

Overloads

WorkflowTrackPointCollection()

Initializes a new instance of the WorkflowTrackPointCollection class.

WorkflowTrackPointCollection(IEnumerable<WorkflowTrackPoint>)

Initializes a new instance of the WorkflowTrackPointCollection class by using a list of workflow track points.

WorkflowTrackPointCollection()

Initializes a new instance of the WorkflowTrackPointCollection class.

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

Remarks

The parameterless constructor initializes the WorkflowTrackPointCollection to an empty list.

Applies to

WorkflowTrackPointCollection(IEnumerable<WorkflowTrackPoint>)

Initializes a new instance of the WorkflowTrackPointCollection class by using a list of workflow track points.

public:
 WorkflowTrackPointCollection(System::Collections::Generic::IEnumerable<System::Workflow::Runtime::Tracking::WorkflowTrackPoint ^> ^ points);
public WorkflowTrackPointCollection (System.Collections.Generic.IEnumerable<System.Workflow.Runtime.Tracking.WorkflowTrackPoint> points);
new System.Workflow.Runtime.Tracking.WorkflowTrackPointCollection : seq<System.Workflow.Runtime.Tracking.WorkflowTrackPoint> -> System.Workflow.Runtime.Tracking.WorkflowTrackPointCollection
Public Sub New (points As IEnumerable(Of WorkflowTrackPoint))

Parameters

Exceptions

points is a null reference (Nothing in Visual Basic).

Remarks

The WorkflowTrackPointCollection is initialized to contain the WorkflowTrackPoint objects specified in points.

Applies to