Condividi tramite


FormsAuthenticationUserCollection.GetKey(Int32) Metodo

Definizione

Ottiene la chiave in corrispondenza dell'indice dell'insieme FormsAuthenticationUserCollection specificato.

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

Parametri

index
Int32

Indice nell'insieme.

Restituisce

Chiave in corrispondenza dell'indice specificato di FormsAuthenticationUserCollection.

Esempio

Nell'esempio di codice riportato di seguito viene illustrato come utilizzare il metodo GetKey.

// 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)

Si applica a