6 writes to IsPartialEntry
System (6)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (3)
355ctx.CacheEntry.IsPartialEntry = false; 1712ctx.CacheEntry.IsPartialEntry = true; 1729ctx.CacheEntry.IsPartialEntry = false;
net\System\Net\Cache\_SingleItemRequestCache.cs (2)
60IsPartialEntry = entry.IsPartialEntry; 219requestCacheEntry.IsPartialEntry = false;
net\System\Net\Cache\IERequestCache.cs (1)
287cacheEntry.IsPartialEntry = true;
8 references to IsPartialEntry
System (8)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (1)
1550if (ctx.CacheEntry.IsPartialEntry || (ctx.CacheEntityLength != -1 && ctx.CacheEntityLength != ctx.CacheEntry.StreamSize) || ctx.CacheStatusCode == HttpStatusCode.PartialContent)
net\System\Net\Cache\_SingleItemRequestCache.cs (1)
60IsPartialEntry = entry.IsPartialEntry;
net\System\Net\Cache\FtpRequestCacheValidator.cs (5)
199if (CacheStream == Stream.Null || CacheEntry.IsPartialEntry) 219if (Policy.Level == RequestCacheLevel.Revalidate || CacheEntry.IsPartialEntry) 287if (CacheStreamOffset != 0L && CacheEntry.IsPartialEntry) 296if (CacheEntry.IsPartialEntry) 504if (CacheEntry.IsPartialEntry || request.ContentOffset >= CacheStreamLength)
net\System\Net\Cache\RequestCacheEntry.cs (1)
88sb.Append("\r\nIsPartialEntry = ").Append(IsPartialEntry);