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
IEnumerable<WorkflowTrackPoint>

IEnumerable<T> オブジェクトの WorkflowTrackPoint リスト。

例外

points が null 参照 (Visual Basic の場合は Nothing) です。

注釈

WorkflowTrackPointCollection は、WorkflowTrackPoint で指定された points オブジェクトを含むように初期化されます。

適用対象