HttpCachePolicy.SetRevalidation(HttpCacheRevalidation) Method

Definition

Sets the Cache-Control HTTP header to either the must-revalidate or the proxy-revalidate directives based on the supplied enumeration value.

C#
public void SetRevalidation(System.Web.HttpCacheRevalidation revalidation);

Parameters

revalidation
HttpCacheRevalidation

The HttpCacheRevalidation enumeration value to set the Cache-Control header to.

Exceptions

revalidation is not one of the enumeration values.

Examples

The following code example demonstrates how to set cache revalidation to AllCaches.

C#
Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches);

Remarks

The default, which is equivalent to None, is to send neither directive in a header unless explicitly specified by this method.

SetRevalidation is introduced in the .NET Framework version 3.5. For more information, see Versions and Dependencies.

Applies to

Proizvod Verzije
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also