OutputCacheProfileCollection.AllKeys Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene las claves de OutputCacheProfileCollection.
public:
property cli::array <System::String ^> ^ AllKeys { cli::array <System::String ^> ^ get(); };
public string[] AllKeys { get; }
member this.AllKeys : string[]
Public ReadOnly Property AllKeys As String()
Valor de propiedad
- String[]
Matriz de string
que contiene las claves de la colección.
Ejemplos
En el ejemplo de código siguiente se muestra cómo utilizar la propiedad AllKeys.
// Get the keys.
object [] keys = outputCacheProfiles.AllKeys;
' Get the keys.
Dim keys As String() = _
outputCacheProfiles.AllKeys