OutputCacheProfileCollection.Get Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera określony OutputCacheProfileCollection element.
Przeciążenia
Get(Int32) |
OutputCacheProfile Pobiera element w określonym indeksie. |
Get(String) |
OutputCacheProfile Pobiera element o określonej nazwie. |
Get(Int32)
OutputCacheProfile Pobiera element w określonym indeksie.
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
Parametry
- index
- Int32
Indeks OutputCacheProfileCollection elementu.
Zwraca
Element OutputCacheProfile w określonym indeksie.
Przykłady
W poniższym przykładzie kodu pokazano, jak używać Get metody .
// 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")
Zobacz też
Dotyczy
Get(String)
OutputCacheProfile Pobiera element o określonej nazwie.
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
Parametry
- name
- String
Nazwa OutputCacheProfileCollection elementu.
Zwraca
Element OutputCacheProfile o określonej nazwie.
Przykłady
W poniższym przykładzie kodu pokazano, jak używać Get metody .
// 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")