1 write to CacheCacheControl
System (1)
net\System\Net\Cache\HttpRequestCacheValidator.cs (1)
884
CacheCacheControl
= control;
16 references to CacheCacheControl
System (16)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (15)
131
if (ctx.CacheHeaders.Expires == null && (ctx.CacheEntry.IsPrivateEntry?ctx.
CacheCacheControl
.MaxAge == -1:ctx.
CacheCacheControl
.SMaxAge == -1)) {
565
if (!ctx.CacheEntry.IsPrivateEntry && ctx.
CacheCacheControl
.SMaxAge != -1) {
566
ctx.CacheMaxAge = TimeSpan.FromSeconds(ctx.
CacheCacheControl
.SMaxAge);
579
if (ctx.
CacheCacheControl
.MaxAge != -1) {
580
ctx.CacheMaxAge = TimeSpan.FromSeconds(ctx.
CacheCacheControl
.MaxAge);
947
if (ctx.
CacheCacheControl
.NoCache) {
948
if (ctx.
CacheCacheControl
.NoCacheHeaders == null)
963
for (int i = 0; i < ctx.
CacheCacheControl
.NoCacheHeaders.Length; ++i) {
964
ctx.CacheHeaders.Remove(ctx.
CacheCacheControl
.NoCacheHeaders[i]);
984
if (ctx.
CacheCacheControl
.MustRevalidate ||
985
(!ctx.CacheEntry.IsPrivateEntry && ctx.
CacheCacheControl
.ProxyRevalidate))
1024
if (!ctx.CacheEntry.IsPrivateEntry && ctx.
CacheCacheControl
.SMaxAge == -1 && !ctx.
CacheCacheControl
.MustRevalidate && !ctx.
CacheCacheControl
.Public) {
net\System\Net\Cache\HttpRequestCacheValidator.cs (1)
238
if(Logging.On) Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_cache_control,
CacheCacheControl
.ToString()));