OutputCacheProfile.Enabled Property

Definition

Gets or sets a value indicating whether caching is 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

Property Value

true if caching is enabled; otherwise, false. The default value is false.

Attributes

Examples

The following code example shows how to use the Enabled property.


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

Remarks

The Enabled property allows enabling or disabling the caching mechanism in one place only. It affects all the pages or controls that use this OutputCacheProfile.

Applies to

See also