10 references to RequestCachePolicy
PresentationCore (1)
Core\CSharp\System\IO\Packaging\PackWebRequest.cs (1)
613static private RequestCachePolicy _defaultCachePolicy = new RequestCachePolicy(RequestCacheLevel.CacheIfAvailable);
System (6)
net\System\Net\Cache\RequestCacheManager.cs (1)
34private static readonly RequestCacheBinding s_BypassCacheBinding = new RequestCacheBinding (null, null, new RequestCachePolicy(RequestCacheLevel.BypassCache));
net\System\Net\Cache\RequestCachePolicy.cs (2)
56public RequestCachePolicy(): this (RequestCacheLevel.Default) 161public HttpRequestCachePolicy(HttpRequestCacheLevel level): base(MapLevel(level))
net\System\Net\Configuration\RequestCachingSection.cs (2)
166this.defaultCachePolicy = new RequestCachePolicy(section.DefaultPolicyLevel); // default should be RequestCacheLevel.BypassCache 223this.defaultFtpCachePolicy = new RequestCachePolicy(ftpPolicy.PolicyLevel);
net\System\Net\NetWebProxyFinder.cs (1)
239request.CachePolicy = new RequestCachePolicy(RequestCacheLevel.Default);
System.Runtime.Remoting (1)
channels\http\httpclientchannel.cs (1)
451private static RequestCachePolicy s_requestCachePolicy = new RequestCachePolicy(RequestCacheLevel.BypassCache);
System.ServiceModel (1)
System\ServiceModel\Channels\HttpChannelFactory.cs (1)
37static RequestCachePolicy requestCachePolicy = new RequestCachePolicy(RequestCacheLevel.BypassCache);
System.Web.Services (1)
System\Web\Services\Protocols\ClientProtocol.cs (1)
105bypassCache = new RequestCachePolicy(RequestCacheLevel.BypassCache);