OutputCacheSettingsSection.OutputCacheProfiles Property

Definition

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

Property Value

A OutputCacheProfileCollection of OutputCacheProfile objects.

Attributes

Examples

The following code example shows how to use the OutputCacheProfiles property.

// Get the current OutputCacheProfiles property value.
OutputCacheProfileCollection outputCacheProfilesValue =
  outputCacheSettings.OutputCacheProfiles;
' Get the current OutputCacheProfiles property value.
  Dim outputCacheProfilesValue _
  As OutputCacheProfileCollection = _
  outputCacheSettings.OutputCacheProfiles

Remarks

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.

Applies to

See also