System.Web.Configuration Namespace
.NET Framework version 2.0
Configures the global cache settings for an ASP.NET application. This class cannot be inherited.
The CacheSection class provides a way to programmatically access and modify the cache element 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.
The following code example shows how to obtain the CacheSection object from the configuration file of an existing Web application.
// Get the Web application configuration.
System.Configuration.Configuration webConfig =
WebConfigurationManager.OpenWebConfiguration ( "/aspnetTest" );
// Get the section.
string configPath = "system.web/cache";
System.Web.Configuration.CacheSection cacheSection =
( System.Web.Configuration.CacheSection ) webConfig.GetSection ( configPath );
' Get the Web application configuration.
Dim webConfig As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration ( "/aspnetTest" )
' Get the section.
Dim configPath As String = "system.web/cache"
Dim cacheSection As System.Web.Configuration.CacheSection = _
CType ( webConfig.GetSection ( configPath ), System.Web.Configuration.CacheSection ) |
|
C# |
VB |
OutputCacheSection Class OutputCacheSettingsSection Class SqlCacheDependencySection Class cache Element