Sdílet prostřednictvím


FormsAuthenticationUserCollection.Get Metoda

Definice

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

FormsAuthenticationUser

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

FormsAuthenticationUser

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)

Platí pro