ExtractCollection 构造函数
定义
初始化 ExtractCollection 类的新实例。Initializes a new instance of the ExtractCollection class.
重载
| ExtractCollection() |
初始化 ExtractCollection 类的新实例。Initializes a new instance of the ExtractCollection class. |
| ExtractCollection(IEnumerable<TrackingExtract>) |
使用 ExtractCollection 对象的列表初始化 TrackingExtract 类的新实例。Initializes a new instance of the ExtractCollection class by using a list of TrackingExtract objects. |
ExtractCollection()
初始化 ExtractCollection 类的新实例。Initializes a new instance of the ExtractCollection class.
public:
ExtractCollection();
public ExtractCollection ();
Public Sub New ()
注解
ExtractCollection 将被初始化为空列表。The ExtractCollection is initialized to an empty list.
适用于
ExtractCollection(IEnumerable<TrackingExtract>)
使用 ExtractCollection 对象的列表初始化 TrackingExtract 类的新实例。Initializes a new instance of the ExtractCollection class by using a list of TrackingExtract objects.
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 列表。An IEnumerable<T> list of TrackingExtract objects.
例外
extracts 为空引用(在 Visual Basic 中为 Nothing)。extracts is a null reference (Nothing in Visual Basic).
注解
ExtractCollection 在初始化后将包含 TrackingExtract 中指定的 extracts 对象。The ExtractCollection is initialized to contain the TrackingExtract objects specified in extracts.