WorkflowTrackPointCollection Construtores

Definição

Inicializa uma nova instância da WorkflowTrackPointCollection classe.

Sobrecargas

Name Description
WorkflowTrackPointCollection()

Inicializa uma nova instância da WorkflowTrackPointCollection classe.

WorkflowTrackPointCollection(IEnumerable<WorkflowTrackPoint>)

Inicializa uma nova instância da WorkflowTrackPointCollection classe usando uma lista de pontos de acompanhamento do fluxo de trabalho.

WorkflowTrackPointCollection()

Inicializa uma nova instância da WorkflowTrackPointCollection classe.

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

Observações

O construtor sem parâmetros inicializa o WorkflowTrackPointCollection para uma lista vazia.

Aplica-se a

WorkflowTrackPointCollection(IEnumerable<WorkflowTrackPoint>)

Inicializa uma nova instância da WorkflowTrackPointCollection classe usando uma lista de pontos de acompanhamento do fluxo de trabalho.

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

Parâmetros

Exceções

points é uma referência nula (Nothing em Visual Basic).

Observações

O WorkflowTrackPointCollection é inicializado para conter os WorkflowTrackPoint objetos especificados em points.

Aplica-se a