asp.net.ph

CacheSection Class

System.Web.Configuration Namespace


.NET Framework version 2.0

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

CacheSection Class Members

Collapse   Constructors

Visibility Constructor Parameters
public CacheSection ( )

Collapse   Properties

Visibility Name Value Type Accessibility
public DefaultProvider String [ Get , Set ]
public DisableExpiration Boolean [ Get , Set ]
public DisableMemoryCollection Boolean [ Get , Set ]
public PercentagePhysicalMemoryUsedLimit Int32 [ Get , Set ]
public PrivateBytesLimit Int64 [ Get , Set ]
public PrivateBytesPollTime TimeSpan [ Get , Set ]
public Providers ProviderSettingsCollection [ Get ]

Remarks

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.

Example

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 );
  C# VB

See Also

OutputCacheSection Class   OutputCacheSettingsSection Class   SqlCacheDependencySection Class   cache Element Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph