OutputCacheSection.EnableOutputCache Property

 

Gets or sets a value indicating whether the output cache is enabled.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

<ConfigurationPropertyAttribute("enableOutputCache", DefaultValue := True)>
Public Property EnableOutputCache As Boolean

Property Value

Type: System.Boolean

true if the output cache is enabled; otherwise, false. The default is true.

If the EnableFragmentCache property is set to false, no page is cached on the server, regardless of the settings in @ OutputCache directive or caching profile used by the page. For more information, see OutputCacheSettingsSection and OutputCacheProfile.

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

' Get the current EnabledOutputCache.
  Dim enabledOutputCache As [Boolean] = _
  outputCacheSection.EnableOutputCache

' Set the EnabledOutputCache.
outputCacheSection.EnableOutputCache = False

.NET Framework
Available since 2.0
Return to top
Show: