UserTrackingLocationCollection Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Inicializuje novou instanci UserTrackingLocationCollection třídy .
Přetížení
UserTrackingLocationCollection() |
Inicializuje novou instanci UserTrackingLocationCollection třídy . |
UserTrackingLocationCollection(IEnumerable<UserTrackingLocation>) |
Inicializuje novou instanci třídy UserTrackingLocationCollection pomocí seznamu umístění uživatele. |
UserTrackingLocationCollection()
Inicializuje novou instanci UserTrackingLocationCollection třídy .
public:
UserTrackingLocationCollection();
public UserTrackingLocationCollection ();
Public Sub New ()
Poznámky
Konstruktor bez parametrů inicializuje na UserTrackingLocationCollection prázdný seznam.
Platí pro
UserTrackingLocationCollection(IEnumerable<UserTrackingLocation>)
Inicializuje novou instanci třídy UserTrackingLocationCollection pomocí seznamu umístění uživatele.
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))
Parametry
- locations
- IEnumerable<UserTrackingLocation>
Seznam IEnumerable<T> UserTrackingLocation objektů.
Výjimky
locations
je nulový odkaz ( Nothing
v Visual Basic).
Poznámky
Objekt UserTrackingLocationCollection je inicializován tak, aby obsahoval UserTrackingLocation objekty zadané v locations
.