WorkflowTrackPointCollection 构造函数

定义

初始化 WorkflowTrackPointCollection 类的新实例。

重载

WorkflowTrackPointCollection()

初始化 WorkflowTrackPointCollection 类的新实例。

WorkflowTrackPointCollection(IEnumerable<WorkflowTrackPoint>)

使用工作流跟踪点的列表初始化 WorkflowTrackPointCollection 类的新实例。

WorkflowTrackPointCollection()

初始化 WorkflowTrackPointCollection 类的新实例。

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

注解

无参数构造函数将初始化 WorkflowTrackPointCollection 为空列表。

适用于

WorkflowTrackPointCollection(IEnumerable<WorkflowTrackPoint>)

使用工作流跟踪点的列表初始化 WorkflowTrackPointCollection 类的新实例。

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

参数

例外

points 为空引用(在 Visual Basic 中为 Nothing)。

注解

WorkflowTrackPointCollection 在初始化后将包含 WorkflowTrackPoint 中指定的 points 对象。

适用于