6 writes to MaxStale
System (6)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (2)
369
ctx.CacheEntry.
MaxStale
= ctx.Policy.MaxStale;
372
ctx.CacheEntry.
MaxStale
= TimeSpan.MinValue;
net\System\Net\Cache\_SingleItemRequestCache.cs (3)
58
MaxStale
= entry.MaxStale;
216
requestCacheEntry.
MaxStale
= maxStale;
280
chkEntry.
MaxStale
= maxStale;
net\System\Net\Cache\HttpRequestCacheValidator.cs (1)
526
CacheEntry.
MaxStale
= this.Policy.MaxStale;
6 references to MaxStale
System (6)
net\System\Net\Cache\_RequestCacheProtocol.cs (3)
595
_Validator.CacheEntry.
MaxStale
,
615
{stream = _RequestCache.Store(_Validator.CacheKey, _Validator.CacheEntry.StreamSize, _Validator.CacheEntry.ExpiresUtc, _Validator.CacheEntry.LastModifiedUtc, _Validator.CacheEntry.
MaxStale
, _Validator.CacheEntry.EntryMetadata, _Validator.CacheEntry.SystemMetadata);}
617
{_RequestCache.TryStore(_Validator.CacheKey, _Validator.CacheEntry.StreamSize, _Validator.CacheEntry.ExpiresUtc, _Validator.CacheEntry.LastModifiedUtc, _Validator.CacheEntry.
MaxStale
, _Validator.CacheEntry.EntryMetadata, _Validator.CacheEntry.SystemMetadata, out stream);}
net\System\Net\Cache\_SingleItemRequestCache.cs (1)
58
MaxStale = entry.
MaxStale
;
net\System\Net\Cache\RequestCacheEntry.cs (2)
94
sb.Append("\r\nMaxStale(sec) = ").Append(
MaxStale
== TimeSpan.MinValue? "": ((int)
MaxStale
.TotalSeconds).ToString(NumberFormatInfo.CurrentInfo));