6 writes to IsPrivateEntry
System (6)
net\System\Net\Cache\_RequestCacheProtocol.cs (2)
313
cacheEntry.
IsPrivateEntry
= _RequestCache.IsPrivateCache;
564
cacheEntry.
IsPrivateEntry
= _RequestCache.IsPrivateCache;
net\System\Net\Cache\_SingleItemRequestCache.cs (2)
51
IsPrivateEntry
= entry.IsPrivateEntry;
210
requestCacheEntry.
IsPrivateEntry
= this.IsPrivateCache;
net\System\Net\Cache\IERequestCache.cs (2)
311
cacheEntry.
IsPrivateEntry
= IsPrivateCache;
340
cacheEntry.
IsPrivateEntry
= IsPrivateCache;
8 references to IsPrivateEntry
System (8)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (6)
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) {
767
if (!ctx.CacheEntry.
IsPrivateEntry
) {
816
if (!ctx.CacheEntry.
IsPrivateEntry
&& ctx.Request.Headers[HttpKnownHeaderNames.Authorization] != null) {
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\_SingleItemRequestCache.cs (1)
51
IsPrivateEntry = entry.
IsPrivateEntry
;
net\System\Net\Cache\RequestCacheEntry.cs (1)
87
sb.Append("\r\nIsPrivateEntry = ").Append(
IsPrivateEntry
);