다음을 통해 공유


OutputCacheSection.EnableFragmentCache 속성

정의

부분 캐시 기능을 사용할지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property bool EnableFragmentCache { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enableFragmentCache", DefaultValue=true)]
public bool EnableFragmentCache { get; set; }
[<System.Configuration.ConfigurationProperty("enableFragmentCache", DefaultValue=true)>]
member this.EnableFragmentCache : bool with get, set
Public Property EnableFragmentCache As Boolean

속성 값

부분 캐시 기능을 사용하면 true이고, 그렇지 않으면 false입니다. 기본값은 true입니다.

특성

예제

다음 코드 예제에서는 EnableFragmentCache 속성을 사용하는 방법을 보여 줍니다.


// Get the current EnabledFragmentCache.
Boolean enabledFragmentCache =
    outputCacheSection.EnableFragmentCache;

// Set the EnabledFragmentCache.
outputCacheSection.EnableFragmentCache = false;
' Get the current EnabledFragmentCache.
  Dim enabledFragmentCache As [Boolean] = _
  outputCacheSection.EnableFragmentCache

' Set the EnabledFragmentCache.
outputCacheSection.EnableFragmentCache = False

설명

경우는 EnableFragmentCache 속성이로 설정 되어 false, 상관 없이 캐시 된 사용자 정의 컨트롤 출력 없음이 @ OutputCache 지시문 또는 사용 하는 프로필을 캐시 합니다. 자세한 내용은 OutputCacheSettingsSectionOutputCacheProfile를 참조하세요.

적용 대상

추가 정보