OutputCacheProfileCollection.Item[] Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá zadanou OutputCacheProfile položku kolekce.
Přetížení
Item[Int32] |
Získá nebo nastaví OutputCacheProfile objekt v zadaném indexu. |
Item[String] |
OutputCacheProfile Získá zadaný název. |
Item[Int32]
Získá nebo nastaví OutputCacheProfile objekt v zadaném indexu.
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
Index kolekce objektu OutputCacheProfile .
Hodnota vlastnosti
V OutputCacheProfile zadaném indexu.
Příklady
Následující příklad kódu ukazuje, jak použít Item[] vlastnost.
// 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)
Viz také
Platí pro
Item[String]
OutputCacheProfile Získá zadaný název.
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
Název objektu OutputCacheProfile .
Hodnota vlastnosti
Zadaný OutputCacheProfile název.
Příklady
Následující příklad kódu ukazuje, jak použít Item[] vlastnost.
// 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")