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