OutputCacheProfile.Enabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.