Udostępnij za pośrednictwem


OutputCacheProfile.Enabled Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą, czy buforowanie jest włączone.

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

Wartość właściwości

true jeśli buforowanie jest włączone; w przeciwnym razie , false. Wartość domyślna to false.

Atrybuty

Przykłady

W poniższym przykładzie kodu pokazano, jak używać Enabled właściwości.


 // 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

Uwagi

Właściwość Enabled umożliwia włączanie lub wyłączanie mechanizmu buforowania tylko w jednym miejscu. Ma on wpływ na wszystkie strony lub kontrolki, które używają tego polecenia OutputCacheProfile.

Dotyczy

Zobacz też