OutputCacheProfileCollection.GetKey(Int32) Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Получает ключ по указанному индексу OutputCacheProfileCollection.
public:
System::String ^ GetKey(int index);
public string GetKey (int index);
member this.GetKey : int -> string
Public Function GetKey (index As Integer) As String
Параметры
- index
- Int32
Индекс ключа OutputCacheProfileCollection.
Возвращаемое значение
Ключ с указанным индексом OutputCacheProfileCollection.
Примеры
В следующем примере кода показано применение метода GetKey.
// 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)