共用方式為


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

適用於

另請參閱