HttpCachePolicyBase Class
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.
Serves as the base class for classes that contain methods for setting cache-specific HTTP headers and for controlling the ASP.NET page output cache.
public ref class HttpCachePolicyBase abstract
public abstract class HttpCachePolicyBase
type HttpCachePolicyBase = class
Public MustInherit Class HttpCachePolicyBase
- Inheritance
-
HttpCachePolicyBase
- Derived
Remarks
The HttpCachePolicyBase class is an abstract class that contains the same members as the HttpCachePolicy class. The HttpCachePolicyBase class lets you create derived classes that are like the HttpCachePolicy class, but that you can customize and that work outside the ASP.NET pipeline. When you perform unit testing, you typically use a derived class to implement members with customized behavior that fulfills the scenario you are testing.
The HttpCachePolicyWrapper class derives from the HttpCachePolicyBase class. The HttpCachePolicyWrapper class serves as a wrapper for the HttpCachePolicy class. At run time, you typically use an instance of the HttpCachePolicyWrapper class to call members of the HttpCachePolicy object.
Constructors
HttpCachePolicyBase() |
Initializes the class for use by an inherited class instance. This constructor can only be called by an inherited class. |
Properties
VaryByContentEncodings |
When overridden in a derived class, gets the list of |
VaryByHeaders |
When overridden in a derived class, gets the list of all HTTP headers that are used to vary cache output. |
VaryByParams |
When overridden in a derived class, gets the list of parameters that are received by an HTTP |
Methods
AddValidationCallback(HttpCacheValidateHandler, Object) |
When overridden in a derived class, registers a validation callback for the current response. |
AppendCacheExtension(String) |
When overridden in a derived class, appends the specified text to the |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
SetAllowResponseInBrowserHistory(Boolean) |
When overridden in a derived class, makes the response available in the browser history cache, regardless of the HttpCacheability setting made on the server. |
SetCacheability(HttpCacheability) |
When overridden in a derived class, sets the |
SetCacheability(HttpCacheability, String) |
When overridden in a derived class, sets the |
SetETag(String) |
When overridden in a derived class, sets the |
SetETagFromFileDependencies() |
When overridden in a derived class, sets the |
SetExpires(DateTime) |
When overridden in a derived class, sets the |
SetLastModified(DateTime) |
When overridden in a derived class, sets the |
SetLastModifiedFromFileDependencies() |
When overridden in a derived class, sets the |
SetMaxAge(TimeSpan) |
When overridden in a derived class, sets the |
SetNoServerCaching() |
When overridden in a derived class, stops all origin-server caching for the current response. |
SetNoStore() |
When overridden in a derived class, sets the |
SetNoTransforms() |
When overridden in a derived class, sets the |
SetOmitVaryStar(Boolean) |
When overridden in a derived class, specifies whether the response contains the |
SetProxyMaxAge(TimeSpan) |
When overridden in a derived class, sets the |
SetRevalidation(HttpCacheRevalidation) |
When overridden in a derived class, sets the |
SetSlidingExpiration(Boolean) |
When overridden in a derived class, sets cache expiration to absolute or sliding. |
SetValidUntilExpires(Boolean) |
When overridden in a derived class, specifies whether the ASP.NET cache should ignore HTTP |
SetVaryByCustom(String) |
When overridden in a derived class, specifies a text string to vary cached output responses by. |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |