CacheSection 构造函数

定义

初始化 CacheSection 类的新实例。

public:
 CacheSection();
public CacheSection ();
Public Sub New ()

示例

System.Web.Configuration.CacheSection cacheSection =
    (System.Web.Configuration.CacheSection)config.GetSection(
        "system.web/caching/cache");
Dim cacheSection As System.Web.Configuration.CacheSection =
    CType(config.GetSection("system.web/caching/cache"), System.Web.Configuration.CacheSection)

注解

构造 CacheSection 函数不打算直接从代码使用。 它由 ASP.NET 配置系统调用。 可以使用GetSection该方法获取类的CacheSection实例。

适用于