WorkflowTrackPointCollection Constructors
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.
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
- points
- IEnumerable<WorkflowTrackPoint>
An IEnumerable<T> list of WorkflowTrackPoint objects.
Exceptions
points
is a null reference (Nothing
in Visual Basic).
Remarks
The WorkflowTrackPointCollection is initialized to contain the WorkflowTrackPoint objects specified in points
.