Freigeben über


FormsAuthenticationUserCollection.GetKey(Int32) Methode

Definition

Ruft den Schlüssel am angegebenen Index der FormsAuthenticationUserCollection-Auflistung ab

public:
 System::String ^ GetKey(int index);
public string GetKey (int index);
member this.GetKey : int -> string
Public Function GetKey (index As Integer) As String

Parameter

index
Int32

Der Index in der Auflistung

Gibt zurück

Der Schlüssel am angegebenen Index von FormsAuthenticationUserCollection

Beispiele

Im folgenden Codebeispiel wird die Verwendung der GetKey-Methode veranschaulicht.

// Get the key at the specified index.
string thisKey = formsAuthenticationCredentials.Users.GetKey(0).ToString();
' Get the key at the specified index.
  Dim thisKey As String = _
  formsAuthenticationCredentials.Users.GetKey(0)

Gilt für: