WebResponse.IsFromCache 属性
定义
public:
virtual property bool IsFromCache { bool get(); };
public virtual bool IsFromCache { get; }
member this.IsFromCache : bool
Public Overridable ReadOnly Property IsFromCache As Boolean
属性值
如果此响应来自缓存,则为 true;否则为 false。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. 使用 CachePolicy 属性设置和 RequestCachePolicy 类来枚举当前缓存策略。Use the CachePolicy property to set and the RequestCachePolicy class to enumerate the current caching policy.
请注意,获取此属性可能会引发 ObjectDisposedException 。Note that getting this property can throw ObjectDisposedException.