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.

WebResponse::IsFromCache Property

 

Gets a Boolean value that indicates whether this response was obtained from the cache.

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

public:
property bool IsFromCache {
	virtual bool get();
}

Property Value

Type: System::Boolean

true if the response was taken from the cache; otherwise, false.

The current cache policy and the presence of the requested resource in the cache determine whether a response can be retrieved from the cache. Using cached responses usually improves application performance, but there is a risk that the response in the cache does not match the response on the server. Use the CachePolicy property to set and the RequestCachePolicy class to enumerate the current caching policy.

Note that getting this property can throw ObjectDisposedException.

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