6 writes to IsPrivateEntry
System (6)
net\System\Net\Cache\_RequestCacheProtocol.cs (2)
313cacheEntry.IsPrivateEntry = _RequestCache.IsPrivateCache; 564cacheEntry.IsPrivateEntry = _RequestCache.IsPrivateCache;
net\System\Net\Cache\_SingleItemRequestCache.cs (2)
51IsPrivateEntry = entry.IsPrivateEntry; 210requestCacheEntry.IsPrivateEntry = this.IsPrivateCache;
net\System\Net\Cache\IERequestCache.cs (2)
311cacheEntry.IsPrivateEntry = IsPrivateCache; 340cacheEntry.IsPrivateEntry = IsPrivateCache;
8 references to IsPrivateEntry
System (8)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (6)
131if (ctx.CacheHeaders.Expires == null && (ctx.CacheEntry.IsPrivateEntry?ctx.CacheCacheControl.MaxAge == -1:ctx.CacheCacheControl.SMaxAge == -1)) { 565if (!ctx.CacheEntry.IsPrivateEntry && ctx.CacheCacheControl.SMaxAge != -1) { 767if (!ctx.CacheEntry.IsPrivateEntry) { 816if (!ctx.CacheEntry.IsPrivateEntry && ctx.Request.Headers[HttpKnownHeaderNames.Authorization] != null) { 985(!ctx.CacheEntry.IsPrivateEntry && ctx.CacheCacheControl.ProxyRevalidate)) 1024if (!ctx.CacheEntry.IsPrivateEntry && ctx.CacheCacheControl.SMaxAge == -1 && !ctx.CacheCacheControl.MustRevalidate && !ctx.CacheCacheControl.Public) {
net\System\Net\Cache\_SingleItemRequestCache.cs (1)
51IsPrivateEntry = entry.IsPrivateEntry;
net\System\Net\Cache\RequestCacheEntry.cs (1)
87sb.Append("\r\nIsPrivateEntry = ").Append(IsPrivateEntry);