3 instantiations of HttpRequestCachePolicy
PresentationCore (3)
MS\Internal\WpfWebRequestHelper.cs (2)
119_httpRequestCachePolicyRefresh = new HttpRequestCachePolicy(HttpRequestCacheLevel.Refresh); 127_httpRequestCachePolicy = new HttpRequestCachePolicy();
System\Windows\Media\RequestCachePolicyConverter.cs (1)
77return 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)
134private static HttpRequestCachePolicy _httpRequestCachePolicy; 135private static HttpRequestCachePolicy _httpRequestCachePolicyRefresh;
System\Windows\Media\RequestCachePolicyConverter.cs (4)
105HttpRequestCachePolicy httpPolicy = value as HttpRequestCachePolicy; 114ConstructorInfo ci = typeof(HttpRequestCachePolicy).GetConstructor(new Type[] { typeof(HttpRequestCachePolicy) });
PresentationFramework (1)
System\Windows\Navigation\NavigationService.cs (1)
2996(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)
1310if (policy is HttpRequestCachePolicy httpRequestCachePolicy)