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이 초기화됩니다.

적용 대상