WorkflowTrackPointCollection Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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
- points
- IEnumerable<WorkflowTrackPoint>
Liste IEnumerable<T> d'objets WorkflowTrackPoint.
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
.