OutputCacheSettingsSection.OutputCacheProfiles 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á .OutputCacheProfileCollection
public:
property System::Web::Configuration::OutputCacheProfileCollection ^ OutputCacheProfiles { System::Web::Configuration::OutputCacheProfileCollection ^ get(); };
[System.Configuration.ConfigurationProperty("outputCacheProfiles")]
public System.Web.Configuration.OutputCacheProfileCollection OutputCacheProfiles { get; }
[<System.Configuration.ConfigurationProperty("outputCacheProfiles")>]
member this.OutputCacheProfiles : System.Web.Configuration.OutputCacheProfileCollection
Public ReadOnly Property OutputCacheProfiles As OutputCacheProfileCollection
Hodnota vlastnosti
A OutputCacheProfileCollection objektů OutputCacheProfile .
- Atributy
Příklady
Následující příklad kódu ukazuje, jak použít OutputCacheProfiles vlastnost.
// Get the current OutputCacheProfiles property value.
OutputCacheProfileCollection outputCacheProfilesValue =
outputCacheSettings.OutputCacheProfiles;
' Get the current OutputCacheProfiles property value.
Dim outputCacheProfilesValue _
As OutputCacheProfileCollection = _
outputCacheSettings.OutputCacheProfiles
Poznámky
Vlastnost OutputCacheProfiles umožňuje programový přístup k elementu outputCacheProfiles
v konfiguračním souboru. Vlastnost můžete použít OutputCacheProfiles k úpravě elementu outputCacheProfiles
prostřednictvím kódu programu.
Oddíl outputCacheProfiles
obsahuje OutputCacheProfile objekty, které představují nastavení výstupní mezipaměti, která mohou být použita stránkami v aplikaci. Tato nastavení lze použít na stránku nastavením atributu CacheProfile
direktivy @ OutputCache . Pomocí profilu můžete řídit atributy ukládání do mezipaměti, jako jsou závislosti, umístění mezipaměti a čas vypršení platnosti mezipaměti.
Direktiva @ OutputCache může přepsat všechna nastavení obsažená v objektu Enabled s OutputCacheProfile výjimkou vlastnosti . Tím zajistíte, že můžete povolit nebo zakázat direktivy OutputCacheProfile , aniž byste museli upravovat direktivy na všech stránkách, které ho mohly přepsat.