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