OutputCacheProfileCollection.Item[] Właściwość
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 OutputCacheProfile element kolekcji.
Przeciążenia
Item[Int32] |
Pobiera lub ustawia OutputCacheProfile obiekt w określonym indeksie. |
Item[String] |
Pobiera element OutputCacheProfile o określonej nazwie. |
Item[Int32]
Pobiera lub ustawia OutputCacheProfile obiekt w określonym indeksie.
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
Parametry
- index
- Int32
Indeks kolekcji OutputCacheProfile obiektu.
Wartość właściwości
Element OutputCacheProfile w określonym indeksie.
Przykłady
W poniższym przykładzie kodu pokazano, jak używać Item[] właściwości.
// 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)
Zobacz też
Dotyczy
Item[String]
Pobiera element OutputCacheProfile o określonej nazwie.
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
Parametry
- name
- String
Nazwa OutputCacheProfile obiektu.
Wartość właściwości
Element OutputCacheProfile o określonej nazwie.
Przykłady
W poniższym przykładzie kodu pokazano, jak używać Item[] właściwości.
// 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")