WorkflowTrackPointCollection Konstruktory

Definice

Inicializuje novou instanci WorkflowTrackPointCollection třídy.

Přetížení

Name Description
WorkflowTrackPointCollection()

Inicializuje novou instanci WorkflowTrackPointCollection třídy.

WorkflowTrackPointCollection(IEnumerable<WorkflowTrackPoint>)

Inicializuje novou instanci WorkflowTrackPointCollection třídy pomocí seznamu bodů sledování pracovního postupu.

WorkflowTrackPointCollection()

Inicializuje novou instanci WorkflowTrackPointCollection třídy.

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

Poznámky

Konstruktor bez parametrů inicializuje WorkflowTrackPointCollection do prázdného seznamu.

Platí pro

WorkflowTrackPointCollection(IEnumerable<WorkflowTrackPoint>)

Inicializuje novou instanci WorkflowTrackPointCollection třídy pomocí seznamu bodů sledování pracovního postupu.

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

Parametry

Výjimky

points je odkaz null (Nothing v Visual Basic).

Poznámky

Inicializuje WorkflowTrackPointCollection se tak, aby obsahovala WorkflowTrackPoint objekty zadané v points.

Platí pro