OutputCacheSettingsSection.OutputCacheProfiles Property
Gets a OutputCacheProfileCollection.
Assembly: System.Web (in System.Web.dll)
[<ConfigurationPropertyAttribute("outputCacheProfiles")>] member OutputCacheProfiles : OutputCacheProfileCollection with get
Property Value
Type: System.Web.Configuration.OutputCacheProfileCollectionA OutputCacheProfileCollection of OutputCacheProfile objects
The OutputCacheProfiles property allows you to programmatically access the outputCacheProfiles element in a configuration file. You can use the OutputCacheProfiles property to modify the outputCacheProfiles element programmatically.
The outputCacheProfiles section contains OutputCacheProfile objects that represent output cache settings that may be used by pages in the application. These settings can be applied to a page by setting the CacheProfile attribute of the @ OutputCache directive. Apply the profile to control caching attributes such as dependencies, cache location, and cache expiration time.
The @ OutputCache directive can override all the settings contained by an OutputCacheProfile except the Enabled property. This is to ensure you can enable or disable the OutputCacheProfile without having to modify the directives in all the pages that might have overridden it.
Available since 2.0
OutputCacheSection
OutputCacheProfile
OutputCacheSettingsSection Class
System.Web.Configuration Namespace
outputCacheProfiles Element for outputCacheSettings for caching (ASP.NET Settings Schema)
@ OutputCache
How to: Set the Cacheability of an ASP.NET Page Declaratively
How to: Set a Page's Cacheability Programmatically