ActivityTrackPointCollection Constructors

Definition

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

Exceptions

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

Remarks

The ActivityTrackPointCollection is initialized to contain the ActivityTrackPoint objects specified in points.

Applies to