SystemWebCachingSectionGroup.OutputCacheSettings 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
구성 내에 포함된 outputCacheSettings
섹션을 가져옵니다.
public:
property System::Web::Configuration::OutputCacheSettingsSection ^ OutputCacheSettings { System::Web::Configuration::OutputCacheSettingsSection ^ get(); };
[System.Configuration.ConfigurationProperty("outputCacheSettings")]
public System.Web.Configuration.OutputCacheSettingsSection OutputCacheSettings { get; }
[<System.Configuration.ConfigurationProperty("outputCacheSettings")>]
member this.OutputCacheSettings : System.Web.Configuration.OutputCacheSettingsSection
Public ReadOnly Property OutputCacheSettings As OutputCacheSettingsSection
속성 값
- 특성
예제
다음 코드 예제에서는 가져오는 방법을 보여 줍니다는 OutputCacheSettingsSection 기존 웹 애플리케이션의 구성 파일에서 개체입니다.
// Get the .<outputCacheSettings> section
OutputCacheSettingsSection outputCacheSettings=
cachingSectionGroup.OutputCacheSettings;
// Display the number of existing
// profiles.
int profilesCount =
outputCacheSettings.OutputCacheProfiles.Count;
msg = String.Format(
"Number of profiles: {0}\n",
profilesCount.ToString());
Console.Write(msg);
' Get the .<outputCacheSettings> section
Dim outputCacheSettings _
As OutputCacheSettingsSection = _
cachingSectionGroup.OutputCacheSettings
' Display the number of existing
' profiles.
Dim profilesCount As Integer = _
outputCacheSettings.OutputCacheProfiles.Count
msg = String.Format( _
"Number of profiles: {0}" + _
ControlChars.Lf, profilesCount.ToString())
Console.Write(msg)
설명
OutputCacheSettingsSection 개체는 구성 파일의 outputCacheSettings
섹션을 참조합니다.
출력 캐시 설정을 사용 하도록 설정 또는 영구 출력 디스크 기반 캐시를 사용 하지 않도록 설정, 캐시에 데이터를 유지 하는 것에 대 한 위치를 정의 및 애플리케이션 당 캐시의 최대 크기를 지정 합니다.
ASP.NET 지시문의 특성을 @ OutputCache
사용하고 프로그래밍 방식으로 클래스의 속성과 메서드 HttpCachePolicy 를 사용하여 선언적으로 여러 버전의 페이지 응답을 캐시할 수 있습니다.
사용 하 여 애플리케이션을 구성 하 여 동일한 결과 얻을 수 있습니다 합니다 OutputCacheSettingsSection 또는 OutputCacheProfile 형식입니다.