Page.InitOutputCache Method (OutputCacheParameters)
This API supports the product infrastructure and is not intended to be used directly from your code.
Initializes the output cache for the current page request based on an OutputCacheParameters object.
Assembly: System.Web (in System.Web.dll)
Protected Friend Overridable Sub InitOutputCache ( cacheSettings As OutputCacheParameters )
Parameters
- cacheSettings
-
Type:
System.Web.UI.OutputCacheParameters
An OutputCacheParameters that contains the cache settings.
| Exception | Condition |
|---|---|
| HttpException | The cache profile was not found. - or - A missing directive or configuration settings profile attribute. |
| ArgumentOutOfRangeException | The output cache settings location is invalid. |
You should not call this method. To enable and manipulate output caching for a page, use either the directive in the .aspx file, or the methods and properties of the HttpCachePolicy class. The latter are accessible through Response.Cache syntax in the page's code declaration block or code-behind file. For more information, see Caching ASP.NET Pages.
Available since 2.0