3 instantiations of HttpRequestCachePolicy
PresentationCore (3)
MS\Internal\WpfWebRequestHelper.cs (2)
134_httpRequestCachePolicyRefresh = new HttpRequestCachePolicy(HttpRequestCacheLevel.Refresh); 142_httpRequestCachePolicy = new HttpRequestCachePolicy();
System\Windows\Media\RequestCachePolicyConverter.cs (1)
90return new HttpRequestCachePolicy(level);
10 references to HttpRequestCachePolicy
netstandard (1)
netstandard.cs (1)
1070[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.Cache.HttpRequestCachePolicy))]
PresentationCore (6)
MS\Internal\WpfWebRequestHelper.cs (2)
149private static HttpRequestCachePolicy _httpRequestCachePolicy; 150private static HttpRequestCachePolicy _httpRequestCachePolicyRefresh;
System\Windows\Media\RequestCachePolicyConverter.cs (4)
118HttpRequestCachePolicy httpPolicy = value as HttpRequestCachePolicy; 127ConstructorInfo ci = typeof(HttpRequestCachePolicy).GetConstructor(new Type[] { typeof(HttpRequestCachePolicy) });
PresentationFramework (1)
System\Windows\Navigation\NavigationService.cs (1)
3059(HttpWebRequest.DefaultCachePolicy is HttpRequestCachePolicy))
System (1)
src\libraries\shims\System\ref\System.cs (1)
597[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.Cache.HttpRequestCachePolicy))]
System.Net.Requests (1)
System\Net\HttpWebRequest.cs (1)
1294if (policy is HttpRequestCachePolicy httpRequestCachePolicy)