ExtractCollection 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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
为空引用(在 Visual Basic 中为 Nothing
)。
注解
ExtractCollection 在初始化后将包含 TrackingExtract 中指定的 extracts
对象。