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