Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HttpResponse::CacheControl Property

 

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

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

public:
property String^ CacheControl {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

A string representation of the HttpCacheability enumeration value.

Exception Condition
ArgumentException

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

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.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft