SystemWebCachingSectionGroup.Cache 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
구성 내에 포함된 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 기존 웹 애플리케이션의 구성 파일에서 개체입니다.
// 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
프로그래밍 방식으로 섹션입니다.