3 instantiations of HttpRequestCachePolicy
PresentationCore (3)
MS\Internal\WpfWebRequestHelper.cs (2)
131_httpRequestCachePolicyRefresh = new HttpRequestCachePolicy(HttpRequestCacheLevel.Refresh); 139_httpRequestCachePolicy = new HttpRequestCachePolicy();
System\Windows\Media\RequestCachePolicyConverter.cs (1)
78return 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)
146private static HttpRequestCachePolicy _httpRequestCachePolicy; 147private static HttpRequestCachePolicy _httpRequestCachePolicyRefresh;
System\Windows\Media\RequestCachePolicyConverter.cs (4)
106HttpRequestCachePolicy httpPolicy = value as HttpRequestCachePolicy; 115ConstructorInfo ci = typeof(HttpRequestCachePolicy).GetConstructor(new Type[] { typeof(HttpRequestCachePolicy) });
PresentationFramework (1)
System\Windows\Navigation\NavigationService.cs (1)
3050(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)