FormsAuthenticationUserCollection.Get Metoda
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í.
Získá zadaný FormsAuthenticationUser prvek kolekce.
Přetížení
Get(String) |
FormsAuthenticationUser Získá element kolekce se zadaným názvem. |
Get(Int32) |
Získá element kolekce v FormsAuthenticationUser zadaném indexu. |
Get(String)
FormsAuthenticationUser Získá element kolekce se zadaným názvem.
public:
System::Web::Configuration::FormsAuthenticationUser ^ Get(System::String ^ name);
public System.Web.Configuration.FormsAuthenticationUser Get (string name);
member this.Get : string -> System.Web.Configuration.FormsAuthenticationUser
Public Function Get (name As String) As FormsAuthenticationUser
Parametry
- name
- String
Jméno uživatele.
Návraty
Objekt FormsAuthenticationUser , který obsahuje uživatelské jméno a heslo.
Příklady
Následující příklad kódu ukazuje, jak získat přístup k přihlašovacím údajům uživatele se zadaným názvem.
// Get the user with the specified name.
FormsAuthenticationUser storedUser =
formsAuthenticationCredentials.Users.Get("userName");
' Get the user with the specified name.
Dim storedUser As FormsAuthenticationUser = _
formsAuthenticationCredentials.Users.Get("userName")
Platí pro
Get(Int32)
Získá element kolekce v FormsAuthenticationUser zadaném indexu.
public:
System::Web::Configuration::FormsAuthenticationUser ^ Get(int index);
public System.Web.Configuration.FormsAuthenticationUser Get (int index);
member this.Get : int -> System.Web.Configuration.FormsAuthenticationUser
Public Function Get (index As Integer) As FormsAuthenticationUser
Parametry
- index
- Int32
Index uživatele kolekce.
Návraty
A FormsAuthenticationUser obsahující uživatelské jméno a heslo.
Příklady
Následující příklad kódu ukazuje, jak získat přístup k přihlašovacím údajům uživatele v zadaném indexu.
// Get the user at the specified index.
FormsAuthenticationUser storedUser2 =
formsAuthenticationCredentials.Users.Get(0);
' Get the user at the specified index.
Dim storedUser2 As FormsAuthenticationUser = _
formsAuthenticationCredentials.Users.Get(0)