ActivityTrackingLocationCollection 构造函数

定义

初始化 ActivityTrackingLocationCollection 类的新实例。

重载

ActivityTrackingLocationCollection()

初始化 ActivityTrackingLocationCollection 类的新实例。

ActivityTrackingLocationCollection(IEnumerable<ActivityTrackingLocation>)

使用活动位置的列表初始化 ActivityTrackingLocationCollection 类的新实例。

ActivityTrackingLocationCollection()

初始化 ActivityTrackingLocationCollection 类的新实例。

public:
 ActivityTrackingLocationCollection();
public ActivityTrackingLocationCollection ();
Public Sub New ()

注解

无参数构造函数将 ActivityTrackingLocationCollection 初始化为空列表。

适用于

ActivityTrackingLocationCollection(IEnumerable<ActivityTrackingLocation>)

使用活动位置的列表初始化 ActivityTrackingLocationCollection 类的新实例。

public:
 ActivityTrackingLocationCollection(System::Collections::Generic::IEnumerable<System::Workflow::Runtime::Tracking::ActivityTrackingLocation ^> ^ locations);
public ActivityTrackingLocationCollection (System.Collections.Generic.IEnumerable<System.Workflow.Runtime.Tracking.ActivityTrackingLocation> locations);
new System.Workflow.Runtime.Tracking.ActivityTrackingLocationCollection : seq<System.Workflow.Runtime.Tracking.ActivityTrackingLocation> -> System.Workflow.Runtime.Tracking.ActivityTrackingLocationCollection
Public Sub New (locations As IEnumerable(Of ActivityTrackingLocation))

参数

例外

locations 为空引用(在 Visual Basic 中为 Nothing)。

注解

ActivityTrackingLocationCollection 在初始化后将包含 ActivityTrackingLocation 中指定的 locations 对象。

适用于