OutputCacheProfileCollection.GetKey(Int32) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá klíč v zadaném OutputCacheProfileCollection indexu.
public:
System::String ^ GetKey(int index);
public string GetKey (int index);
member this.GetKey : int -> string
Public Function GetKey (index As Integer) As String
Parametry
- index
- Int32
Index OutputCacheProfileCollection klíče.
Návraty
Klíč se zadaným OutputCacheProfileCollection indexem.
Příklady
Následující příklad kódu ukazuje, jak použít metodu 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)