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.