System.Web.Configuration.CacheSection Class

Configures the global cache settings for an ASP.NET application. This class cannot be inherited.

See Also: CacheSection Members

Syntax

public sealed class CacheSection : System.Configuration.ConfigurationSection

Remarks

The System.Web.Configuration.CacheSection class provides a way to programmatically access and modify the <cache> section of a configuration file.

The ASP.NET caching feature is implemented by the System.Web.Caching.Cache class. For more information, see ASP.NET Caching Features.

Note:

The System.Web.Configuration.CacheSection can write information into the related section of the configuration file according to the restrictions defined by the section property System.Configuration.SectionInformation.AllowDefinition whose value is System.Configuration.ConfigurationAllowDefinition.MachineToApplication. Any attempt to write in a configuration file at a level not allowed in the hierarchy will result in an error message generated by the parser. However, you can use this class to read configuration information at any level in the hierarchy.

A cache is an application-specific hash table used to store frequently accessed data. Application and session state are similar to the cache, the application state being the most similar, due to its application-wide scope. One of the biggest differences between the cache and the application-state mechanism is that the cache supports dependencies These dependencies make it possible to build applications that automatically remove cached items when certain events occur.

Requirements

Namespace: System.Web.Configuration
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0