Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 2.23 KB

httpcachecontrol.md

File metadata and controls

25 lines (17 loc) · 2.23 KB
-api-id -api-type
T:Windows.Web.Http.Filters.HttpCacheControl
winrt class

Windows.Web.Http.Filters.HttpCacheControl

-description

Provides control of the local HTTP cache for responses to HTTP requests by methods in the Windows.Web.Http and Windows.Web.Http.Filters namespaces.

-remarks

The HttpCacheControl object provides properties to get or set the read and write cache control behavior to be used on the HttpBaseProtocolFilter object. HTTP read requests can use the local HTTP cache for the responses. Content returned by HTTP requests can be written to the local HTTP cache.

The HttpCacheControl object allows a developer to set simple read and write cache control behavior on the HttpBaseProtocolFilter object. To use this feature, an app creates an HttpClient object with a new HttpBaseProtocolFilter object. The CacheControl property on the HttpBaseProtocolFilter object returns an HttpCacheControl object used to set read and write cache behavior for the HttpBaseProtocolFilter and the associated HttpClient object. This determines the read and write cache behavior on responses to HttpClient requests.

Developers can still use the HTTP Cache-Control header for more complete control over caching. The HttpCacheDirectiveHeaderValueCollection provides a collection container for instances of the cache directives in Cache-Control HTTP header on HTTP content associated with an HTTP request or response.

-examples

-see-also

CacheControl, HttpCacheDirectiveHeaderValueCollection, HttpBaseProtocolFilter, HttpClient