FormsAuthenticationUserCollection.GetKey(Int32) Method

Definition

Gets the key at the specified FormsAuthenticationUserCollection collection index.

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

Parameters

index
Int32

The index in the collection.

Returns

The key at the specified index of the FormsAuthenticationUserCollection.

Examples

The following code example shows how to use the GetKey method.

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

Applies to