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


OutputCacheSection.EnableOutputCache Свойство

Определение

Получает или задает значение, отражающее включение выходного кэша.

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

Значение свойства

true, если выходной кэш включен; в противном случае false. Значение по умолчанию — true.

Атрибуты

Примеры

В следующем примере кода показано, как использовать свойство EnableOutputCache.


// Get the current EnabledOutputCache.
Boolean enabledOutputCache = 
    outputCacheSection.EnableOutputCache;

// Set the EnabledOutputCache.
outputCacheSection.EnableOutputCache = false;
' Get the current EnabledOutputCache.
  Dim enabledOutputCache As [Boolean] = _
  outputCacheSection.EnableOutputCache

' Set the EnabledOutputCache.
outputCacheSection.EnableOutputCache = False

Комментарии

EnableFragmentCache Если свойство имеет значение false, страница не кэшируется на сервере, независимо от параметров директивы @ OutputCache или профиля кэширования, используемого страницей. Дополнительные сведения см. в разделах OutputCacheSettingsSection и OutputCacheProfile.

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

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