다음을 통해 공유


SystemWebCachingSectionGroup.OutputCache 속성

정의

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

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

속성 값

OutputCacheSection

OutputCacheSection 개체

특성

예제

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


// Get the .<outputCache> section
OutputCacheSection outputCache =
    cachingSectionGroup.OutputCache;

// Display one of its properties.
msg = String.Format(
"Enable output cache: {0}\n",
outputCache.EnableOutputCache.ToString());

Console.Write(msg);
' Get the .<outputCache> section
Dim outputCache _
As OutputCacheSection = _
cachingSectionGroup.OutputCache

' Display one of its properties.
msg = String.Format( _
"Enable output cache: {0}" + _
ControlChars.Lf, _
outputCache.EnableOutputCache.ToString())

Console.Write(msg)

설명

OutputCacheSection 개체는 구성 파일의 outputCache 섹션을 참조합니다.

적용 대상

추가 정보