UserTrackPointCollection 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 UserTrackPointCollection 类的新实例。
重载
UserTrackPointCollection() |
初始化 UserTrackPointCollection 类的新实例。 |
UserTrackPointCollection(IEnumerable<UserTrackPoint>) |
使用用户跟踪点的列表初始化 UserTrackPointCollection 类的新实例。 |
UserTrackPointCollection()
初始化 UserTrackPointCollection 类的新实例。
public:
UserTrackPointCollection();
public UserTrackPointCollection ();
Public Sub New ()
注解
无参数构造函数将 初始化 UserTrackPointCollection 为空列表。
适用于
UserTrackPointCollection(IEnumerable<UserTrackPoint>)
使用用户跟踪点的列表初始化 UserTrackPointCollection 类的新实例。
public:
UserTrackPointCollection(System::Collections::Generic::IEnumerable<System::Workflow::Runtime::Tracking::UserTrackPoint ^> ^ points);
public UserTrackPointCollection (System.Collections.Generic.IEnumerable<System.Workflow.Runtime.Tracking.UserTrackPoint> points);
new System.Workflow.Runtime.Tracking.UserTrackPointCollection : seq<System.Workflow.Runtime.Tracking.UserTrackPoint> -> System.Workflow.Runtime.Tracking.UserTrackPointCollection
Public Sub New (points As IEnumerable(Of UserTrackPoint))
参数
- points
- IEnumerable<UserTrackPoint>
IEnumerable<T> 对象的 UserTrackPoint 列表。
例外
points
为空引用(在 Visual Basic 中为 Nothing
)。
注解
UserTrackPointCollection 在初始化后将包含 UserTrackPoint 中指定的 points
对象。