OutputCacheProfileCollection.Get Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém o elemento OutputCacheProfileCollection especificado.
Sobrecargas
Get(Int32) |
Obtém o elemento OutputCacheProfile no índice especificado. |
Get(String) |
Obtém o elemento OutputCacheProfile com o nome especificado. |
Get(Int32)
Obtém o elemento OutputCacheProfile no índice especificado.
public:
System::Web::Configuration::OutputCacheProfile ^ Get(int index);
public System.Web.Configuration.OutputCacheProfile Get (int index);
member this.Get : int -> System.Web.Configuration.OutputCacheProfile
Public Function Get (index As Integer) As OutputCacheProfile
Parâmetros
- index
- Int32
O índice do elemento OutputCacheProfileCollection.
Retornos
O elemento OutputCacheProfile no índice especificado.
Exemplos
O exemplo de código a seguir mostra como usar o método Get.
// Get the profile with the specified name.
System.Web.Configuration.OutputCacheProfile outputCacheProfile4 =
outputCacheProfiles.Get("MyCacheProfile");
'Get the profile with the specified name.
Dim outputCacheProfile4 _
As System.Web.Configuration.OutputCacheProfile = _
outputCacheProfiles.Get("MyCacheProfile")
Confira também
Aplica-se a
Get(String)
Obtém o elemento OutputCacheProfile com o nome especificado.
public:
System::Web::Configuration::OutputCacheProfile ^ Get(System::String ^ name);
public System.Web.Configuration.OutputCacheProfile Get (string name);
member this.Get : string -> System.Web.Configuration.OutputCacheProfile
Public Function Get (name As String) As OutputCacheProfile
Parâmetros
- name
- String
O nome do elemento OutputCacheProfileCollection.
Retornos
O elemento OutputCacheProfile com o nome especificado.
Exemplos
O exemplo de código a seguir mostra como usar o método Get.
// Get the profile with the specified name.
System.Web.Configuration.OutputCacheProfile outputCacheProfile4 =
outputCacheProfiles.Get("MyCacheProfile");
'Get the profile with the specified name.
Dim outputCacheProfile4 _
As System.Web.Configuration.OutputCacheProfile = _
outputCacheProfiles.Get("MyCacheProfile")