다음을 통해 공유


SystemWebCachingSectionGroup.Cache 속성

정의

구성 내에 포함된 cache 섹션을 가져옵니다.

public:
 property System::Web::Configuration::CacheSection ^ Cache { System::Web::Configuration::CacheSection ^ get(); };
[System.Configuration.ConfigurationProperty("cache")]
public System.Web.Configuration.CacheSection Cache { get; }
[<System.Configuration.ConfigurationProperty("cache")>]
member this.Cache : System.Web.Configuration.CacheSection
Public ReadOnly Property Cache As CacheSection

속성 값

CacheSection

CacheSection 개체

특성

예제

다음 코드 예제에서는 가져오는 방법을 보여 줍니다는 CacheSection 기존 웹 애플리케이션의 구성 파일에서 개체입니다.


 // Get the <cache> section.
 CacheSection cache =
     cachingSectionGroup.Cache;

 // Display one of its properties.
 msg = String.Format(
 "Cache disable expiration: {0}\n",
 cache.DisableExpiration);

 Console.Write(msg);
' Get the <cache> section.
Dim cache As CacheSection = _
cachingSectionGroup.Cache

' Display one of its properties.
msg = String.Format( _
"Cache disable expiration: {0}" + _
ControlChars.Lf, cache.DisableExpiration)

Console.Write(msg)

설명

CacheSection 개체는 구성 파일의 cache 섹션을 참조합니다. 사용할 수는 CacheSection 수정 하는 클래스는 cache 프로그래밍 방식으로 섹션입니다.

적용 대상

추가 정보