CacheSection Class
Assembly: System.Web (in system.web.dll)
The 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 Cache class. For more information, see ASP.NET Caching.
Note: |
|---|
| The CacheSection can write information into the related section of the configuration file according to the restrictions defined by the section property AllowDefinition whose value is 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.
System.Configuration.ConfigurationElement
System.Configuration.ConfigurationSection
System.Web.Configuration.CacheSection
Note: