次の方法で共有


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 構成システムによって呼び出されます。 メソッドを使用してクラスの CacheSection インスタンスを GetSection 取得します。

適用対象