Поделиться через


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 или используемого профиля кэширования. Дополнительные сведения см. в разделах OutputCacheSettingsSection и OutputCacheProfile.

Применяется к

См. также раздел