UserTrackingLocationCollection コンストラクター

定義

UserTrackingLocationCollection クラスの新しいインスタンスを初期化します。

オーバーロード

UserTrackingLocationCollection()

UserTrackingLocationCollection クラスの新しいインスタンスを初期化します。

UserTrackingLocationCollection(IEnumerable<UserTrackingLocation>)

ユーザーの場所のリストを使用して、UserTrackingLocationCollection クラスの新しいインスタンスを初期化します。

UserTrackingLocationCollection()

UserTrackingLocationCollection クラスの新しいインスタンスを初期化します。

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

注釈

パラメーターのないコンストラクターは、 を空 UserTrackingLocationCollection のリストに初期化します。

適用対象

UserTrackingLocationCollection(IEnumerable<UserTrackingLocation>)

ユーザーの場所のリストを使用して、UserTrackingLocationCollection クラスの新しいインスタンスを初期化します。

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

パラメーター

locations
IEnumerable<UserTrackingLocation>

IEnumerable<T> オブジェクトの UserTrackingLocation リスト。

例外

locations が null 参照 (Visual Basic の場合は Nothing) です。

注釈

UserTrackingLocationCollection は、UserTrackingLocation で指定された locations オブジェクトを含むように初期化されます。

適用対象