HttpResponse.CacheControl Property

Definition

Gets or sets the Cache-Control HTTP header that matches one of the HttpCacheability enumeration values.

public:
 property System::String ^ CacheControl { System::String ^ get(); void set(System::String ^ value); };
public string CacheControl { get; set; }
member this.CacheControl : string with get, set
Public Property CacheControl As String

Property Value

A string representation of the HttpCacheability enumeration value.

Exceptions

The string value set does not match one of the HttpCacheability enumeration values.

Remarks

The values for Private, Public, and No-Cache are strings and must be enclosed in quotation marks (" "). If the CacheControl property is set to a value that does not match one of the HttpCacheability enumeration values, then an ArgumentException is thrown. If the CacheControl property is not set, the cacheability of the response is set to NoCache.

The CacheControl, Expires, and ExpiresAbsolute properties have been deprecated. Instead, the methods of the HttpCachePolicy class are available through the Cache intrinsic object to control the Internet Information Services (IIS) output cache and client caches.

Applies to