OutputCacheProfileCollection.GetKey(Int32) Method

Definition

Gets the key at the specified OutputCacheProfileCollection 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 OutputCacheProfileCollection index of the key.

Returns

The key with the specified OutputCacheProfileCollection index.

Examples

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

// Get the key with the specified index.
string theKey = outputCacheProfiles.GetKey(0).ToString();
' Get the key with the specified index.
  Dim theKey As String = _
  outputCacheProfiles.GetKey(0)

Applies to

See also