OutputCacheProfileCollection.Item[] Propriedade
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 item da coleção OutputCacheProfile especificado.
Sobrecargas
Item[Int32] |
Obtém ou define o objeto OutputCacheProfile no índice especificado. |
Item[String] |
Obtém o OutputCacheProfile com o nome especificado. |
Item[Int32]
Obtém ou define o objeto OutputCacheProfile no índice especificado.
public:
property System::Web::Configuration::OutputCacheProfile ^ default[int] { System::Web::Configuration::OutputCacheProfile ^ get(int index); void set(int index, System::Web::Configuration::OutputCacheProfile ^ value); };
public System.Web.Configuration.OutputCacheProfile this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.OutputCacheProfile with get, set
Default Public Property Item(index As Integer) As OutputCacheProfile
Parâmetros
- index
- Int32
O índice de coleção do objeto OutputCacheProfile.
Valor da propriedade
O OutputCacheProfile no índice especificado.
Exemplos
O exemplo de código a seguir mostra como usar a Item[] propriedade.
// Get the profile with the specified index.
System.Web.Configuration.OutputCacheProfile outputCacheProfile2 =
outputCacheProfiles[0];
' Get the profile with the specified index.
Dim outputCacheProfile2 _
As System.Web.Configuration.OutputCacheProfile = _
outputCacheProfiles(0)
Confira também
Aplica-se a
Item[String]
Obtém o OutputCacheProfile com o nome especificado.
public:
property System::Web::Configuration::OutputCacheProfile ^ default[System::String ^] { System::Web::Configuration::OutputCacheProfile ^ get(System::String ^ name); };
public System.Web.Configuration.OutputCacheProfile this[string name] { get; }
member this.Item(string) : System.Web.Configuration.OutputCacheProfile
Default Public ReadOnly Property Item(name As String) As OutputCacheProfile
Parâmetros
- name
- String
O nome do objeto OutputCacheProfile.
Valor da propriedade
O OutputCacheProfile com o nome especificado.
Exemplos
O exemplo de código a seguir mostra como usar a Item[] propriedade.
// Get the profile with the specified name.
System.Web.Configuration.OutputCacheProfile outputCacheProfile3 =
outputCacheProfiles["MyCacheProfile"];
' Get the profile with the specified name.
Dim outputCacheProfile3 _
As System.Web.Configuration.OutputCacheProfile = _
outputCacheProfiles("MyCacheProfile")