ActivityTrackPointCollection 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 ActivityTrackPointCollection class.
Overloads
ActivityTrackPointCollection() |
Initializes a new instance of the ActivityTrackPointCollection class. |
ActivityTrackPointCollection(IEnumerable<ActivityTrackPoint>) |
Initializes a new instance of the ActivityTrackPointCollection class by using a list of activity track points. |
ActivityTrackPointCollection()
Initializes a new instance of the ActivityTrackPointCollection class.
public:
ActivityTrackPointCollection();
public ActivityTrackPointCollection ();
Public Sub New ()
Remarks
The parameterless constructor initializes the ActivityTrackPointCollection to an empty list.
Applies to
ActivityTrackPointCollection(IEnumerable<ActivityTrackPoint>)
Initializes a new instance of the ActivityTrackPointCollection class by using a list of activity track points.
public:
ActivityTrackPointCollection(System::Collections::Generic::IEnumerable<System::Workflow::Runtime::Tracking::ActivityTrackPoint ^> ^ points);
public ActivityTrackPointCollection (System.Collections.Generic.IEnumerable<System.Workflow.Runtime.Tracking.ActivityTrackPoint> points);
new System.Workflow.Runtime.Tracking.ActivityTrackPointCollection : seq<System.Workflow.Runtime.Tracking.ActivityTrackPoint> -> System.Workflow.Runtime.Tracking.ActivityTrackPointCollection
Public Sub New (points As IEnumerable(Of ActivityTrackPoint))
Parameters
- points
- IEnumerable<ActivityTrackPoint>
An IEnumerable<T> list of ActivityTrackPoint objects.
Exceptions
points
is a null reference (Nothing
in Visual Basic).
Remarks
The ActivityTrackPointCollection is initialized to contain the ActivityTrackPoint objects specified in points
.