WorkflowTrackPointCollection Constructeurs

Définition

Initialise une nouvelle instance de la classe WorkflowTrackPointCollection.

Surcharges

WorkflowTrackPointCollection()

Initialise une nouvelle instance de la classe WorkflowTrackPointCollection.

WorkflowTrackPointCollection(IEnumerable<WorkflowTrackPoint>)

Initialise une nouvelle instance de la classe WorkflowTrackPointCollection en utilisant une liste de trackpoints de workflow.

WorkflowTrackPointCollection()

Initialise une nouvelle instance de la classe WorkflowTrackPointCollection.

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

Remarques

Le constructeur sans paramètre initialise le WorkflowTrackPointCollection dans une liste vide.

S’applique à

WorkflowTrackPointCollection(IEnumerable<WorkflowTrackPoint>)

Initialise une nouvelle instance de la classe WorkflowTrackPointCollection en utilisant une liste de trackpoints de workflow.

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))

Paramètres

Exceptions

points est une référence Null (Nothing en Visual Basic).

Remarques

Le WorkflowTrackPointCollection est initialisé afin de contenir les objets WorkflowTrackPoint spécifiés dans points.

S’applique à