13 references to CacheControlHeaderValue
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (1)
32private static CacheControlHeaderValue s_requestCacheHeader = new CacheControlHeaderValue { NoCache = true, MaxAge = new TimeSpan(0) };
Microsoft.Deployment.DotNet.Releases (1)
Utils.cs (1)
153s_httpClient.DefaultRequestHeaders.CacheControl = new CacheControlHeaderValue
System.Net.Http (3)
System\Net\Http\Headers\CacheControlHeaderValue.cs (3)
332return (CacheControlHeaderValue)CacheControlHeaderParser.Parser.ParseValue(input, null, ref index) ?? new CacheControlHeaderValue(); 342parsedValue = (CacheControlHeaderValue?)output ?? new CacheControlHeaderValue(); 381CacheControlHeaderValue? result = storeValue ?? new CacheControlHeaderValue();
System.Net.Requests (7)
System\Net\HttpWebRequest.cs (7)
1325cacheControl = new CacheControlHeaderValue 1333cacheControl = new CacheControlHeaderValue 1342cacheControl = new CacheControlHeaderValue 1348cacheControl = new CacheControlHeaderValue(); 1368cacheControl = new CacheControlHeaderValue 1381cacheControl = new CacheControlHeaderValue 1389cacheControl = new CacheControlHeaderValue
System.ServiceModel.Http (1)
System\ServiceModel\Channels\HttpChannelFactory.cs (1)
31private static CacheControlHeaderValue s_requestCacheHeader = new CacheControlHeaderValue { NoCache = true, MaxAge = new TimeSpan(0) };