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


OutputCacheProfile.Enabled Свойство

Определение

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

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

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

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

Атрибуты

Примеры

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


 // Get the current Enabled.
Boolean enabledValue = 
    outputCacheProfile.Enabled;

 // Set the Enabled.
 outputCacheProfile.Enabled = 
     false;
    ' Get the current Enabled property.
    Dim enabledValue As [Boolean] = _
    outputCacheProfile.Enabled
  
    ' Set the Enabled property.
outputCacheProfile.Enabled = False

Комментарии

Свойство Enabled позволяет включить или отключить механизм кэширования только в одном месте. Он влияет на все страницы или элементы управления, использующие этот OutputCacheProfile.

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

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