FormsAuthenticationUserCollection.GetKey(Int32) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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)