Compartilhar via


OutputCacheProfileCollection.Get Método

Definição

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

OutputCacheProfile

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

OutputCacheProfile

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")

Confira também

Aplica-se a