Freigeben über


FormsAuthenticationUserCollection.Item[] Eigenschaft

Definition

Ruft das angegebene FormsAuthenticationUser-Auflistungselement ab

Überlädt

Item[Int32]

Ruft den FormsAuthenticationUser am angegebenen Index ab.

Item[String]

Ruft den FormsAuthenticationUser mit dem angegebenen Namen ab.

Item[Int32]

Ruft den FormsAuthenticationUser am angegebenen Index ab.

public:
 property System::Web::Configuration::FormsAuthenticationUser ^ default[int] { System::Web::Configuration::FormsAuthenticationUser ^ get(int index); void set(int index, System::Web::Configuration::FormsAuthenticationUser ^ value); };
public System.Web.Configuration.FormsAuthenticationUser this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.FormsAuthenticationUser with get, set
Default Public Property Item(index As Integer) As FormsAuthenticationUser

Parameter

index
Int32

Der Index des Benutzers in der Auflistung

Eigenschaftswert

FormsAuthenticationUser

Ein FormsAuthenticationUser, der den Benutzernamen und das Kennwort enthält

Beispiele

Im folgenden Codebeispiel wird gezeigt, wie Sie auf die Anmeldeinformationen eines Benutzers im angegebenen Index zugreifen.

// Get the user element at the specified index.
FormsAuthenticationUser storedUser3 = 
    formsAuthenticationCredentials.Users[0];
' Get the user element at the specified index.
  Dim storedUser3 As FormsAuthenticationUser = _
  formsAuthenticationCredentials.Users(0)

Gilt für

Item[String]

Ruft den FormsAuthenticationUser mit dem angegebenen Namen ab.

public:
 property System::Web::Configuration::FormsAuthenticationUser ^ default[System::String ^] { System::Web::Configuration::FormsAuthenticationUser ^ get(System::String ^ name); };
public System.Web.Configuration.FormsAuthenticationUser this[string name] { get; }
member this.Item(string) : System.Web.Configuration.FormsAuthenticationUser
Default Public ReadOnly Property Item(name As String) As FormsAuthenticationUser

Parameter

name
String

Der Name des Benutzers

Eigenschaftswert

FormsAuthenticationUser

Ein FormsAuthenticationUser-Objekt, das den Benutzernamen und das Kennwort enthält

Beispiele

Im folgenden Codebeispiel wird gezeigt, wie Sie auf die Anmeldeinformationen eines Benutzers mit dem angegebenen Namen zugreifen.

// Get the user element with the specified name.
FormsAuthenticationUser storedUser4 = 
    formsAuthenticationCredentials.Users["userName"];
' Get the user element with the specified name.
  Dim storedUser4 As FormsAuthenticationUser = _
  formsAuthenticationCredentials.Users("userName")

Gilt für