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 オブジェクトを格納するように初期化されます。

適用対象