2 overrides of CachePolicy
PresentationCore (2)
Core\CSharp\MS\Internal\IO\Packaging\PseudoWebRequest.cs (1)
107
public override RequestCachePolicy
CachePolicy
Core\CSharp\System\IO\Packaging\PackWebRequest.cs (1)
216
public override RequestCachePolicy
CachePolicy
12 writes to CachePolicy
PresentationCore (4)
Core\CSharp\MS\Internal\IO\Packaging\ByteRangeDownloader.cs (1)
537
request.
CachePolicy
= _cachePolicy;
Core\CSharp\MS\Internal\WpfWebRequestHelper.cs (2)
147
request.
CachePolicy
= _httpRequestCachePolicyRefresh;
155
request.
CachePolicy
= _httpRequestCachePolicy;
Core\CSharp\System\Windows\Media\Imaging\BitmapDownload.cs (1)
241
entry.webRequest.
CachePolicy
= uriCachePolicy;
System (3)
net\System\Net\FtpWebRequest.cs (1)
1980
m_HttpWebRequest.
CachePolicy
= new HttpRequestCachePolicy((HttpRequestCacheLevel)effectiveLevel);
net\System\Net\NetWebProxyFinder.cs (1)
239
request.
CachePolicy
= new RequestCachePolicy(RequestCacheLevel.Default);
net\System\Net\webclient.cs (1)
297
request.
CachePolicy
= m_CachePolicy;
System.Runtime.Remoting (1)
channels\http\httpclientchannel.cs (1)
601
httpWebRequest.
CachePolicy
= s_requestCachePolicy;
System.ServiceModel (1)
System\ServiceModel\Channels\HttpChannelFactory.cs (1)
754
httpWebRequest.
CachePolicy
= requestCachePolicy;
System.Web.Services (1)
System\Web\Services\Protocols\ClientProtocol.cs (1)
429
request.
CachePolicy
= BypassCache;
System.Xml (2)
System\Xml\XmlDownloadManager.cs (1)
47
req.
CachePolicy
= cachePolicy;
System\Xml\XmlDownloadManagerAsync.cs (1)
40
req.
CachePolicy
= cachePolicy;
9 references to CachePolicy
PresentationCore (3)
Core\CSharp\MS\Internal\IO\Packaging\NetStream.cs (1)
660
_byteRangeDownloader.CachePolicy = _originalRequest.
CachePolicy
;
Core\CSharp\MS\Internal\WpfWebRequestHelper.cs (2)
139
if (request.
CachePolicy
== null || request.
CachePolicy
.Level != RequestCacheLevel.Default)
System (6)
net\System\Net\Cache\_RequestCacheProtocol.cs (3)
98
if (request.
CachePolicy
== null || request.
CachePolicy
.Level == RequestCacheLevel.BypassCache)
656
", Policy = " + _Validator.Request.
CachePolicy
.ToString() +
net\System\Net\Cache\RequestCacheValidator.cs (1)
195
_Policy = request.
CachePolicy
;
net\System\Net\FtpWebRequest.cs (2)
1972
if (
CachePolicy
== null)
1975
effectiveLevel =
CachePolicy
.Level;