See Also: SystemWebCachingSectionGroup Members
The System.Web.Configuration.SystemWebCachingSectionGroup class provides a way to programmatically access and modify the caching section of a configuration file.
The System.Web.Configuration.SystemWebCachingSectionGroup class and the caching section provide centralized control of the caching mechanism for a site or application. This makes it possible for caching to be deployed, modified, and disabled without modifying individual pages in the application.
The ASP.NET caching mechanism is implemented by the System.Web.Caching.Cache class. For more information, see ASP.NET Caching Overview
The following list describes the two types of caching ASP.NET provides.
The first is called output caching, which allows you to store dynamic page and user control responses. On subsequent requests, the page or user control code is not executed; the cached output is used to satisfy the request. You can access output caching settings using the SystemWebCachingSectionGroup.OutputCache and SystemWebCachingSectionGroup.OutputCacheSettings properties.
The second type of caching is traditional application data caching, which you can use to programmatically store arbitrary objects to server memory so your application can save the time and resources it takes to recreate them. You can access these cache settings using the SystemWebCachingSectionGroup.Cache property.