ExtractCollection コンストラクター

定義

ExtractCollection クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
ExtractCollection()

ExtractCollection クラスの新しいインスタンスを初期化します。

ExtractCollection(IEnumerable<TrackingExtract>)

ExtractCollection オブジェクトの一覧を使用して、TrackingExtract クラスの新しいインスタンスを初期化します。

ExtractCollection()

ExtractCollection クラスの新しいインスタンスを初期化します。

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

注釈

ExtractCollectionは空のリストに初期化されます。

適用対象

ExtractCollection(IEnumerable<TrackingExtract>)

ExtractCollection オブジェクトの一覧を使用して、TrackingExtract クラスの新しいインスタンスを初期化します。

public:
 ExtractCollection(System::Collections::Generic::IEnumerable<System::Workflow::Runtime::Tracking::TrackingExtract ^> ^ extracts);
public ExtractCollection(System.Collections.Generic.IEnumerable<System.Workflow.Runtime.Tracking.TrackingExtract> extracts);
new System.Workflow.Runtime.Tracking.ExtractCollection : seq<System.Workflow.Runtime.Tracking.TrackingExtract> -> System.Workflow.Runtime.Tracking.ExtractCollection
Public Sub New (extracts As IEnumerable(Of TrackingExtract))

パラメーター

extracts
IEnumerable<TrackingExtract>

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

例外

extracts は null 参照です (Visual Basic では Nothing)。

注釈

ExtractCollectionは、TrackingExtractで指定されたextracts オブジェクトを格納するように初期化されます。

適用対象