5 writes to ExpiresUtc
System (5)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (1)
366ctx.CacheEntry.ExpiresUtc = ctx.ResponseExpires;
net\System\Net\Cache\_SingleItemRequestCache.cs (3)
53ExpiresUtc = entry.ExpiresUtc; 212requestCacheEntry.ExpiresUtc = expiresUtc; 277chkEntry.ExpiresUtc = expiresUtc;
net\System\Net\Cache\HttpRequestCacheValidator.cs (1)
516CacheEntry.ExpiresUtc = ResponseExpires;
10 references to ExpiresUtc
System (10)
net\System\Net\Cache\_RequestCacheProtocol.cs (3)
592_Validator.CacheEntry.ExpiresUtc, 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\_Rfc2616CacheValidators.cs (1)
597DateTime expiresDate = ctx.CacheEntry.ExpiresUtc;
net\System\Net\Cache\_SingleItemRequestCache.cs (1)
53ExpiresUtc = entry.ExpiresUtc;
net\System\Net\Cache\FtpRequestCacheValidator.cs (3)
141if (CacheEntry.ExpiresUtc != DateTime.MinValue) 144if(Logging.On)Logging.PrintWarning(Logging.RequestCache, SR.GetString(SR.net_log_cache_max_age_absolute, CacheEntry.ExpiresUtc.ToString("r", CultureInfo.InvariantCulture))); 145if (CacheEntry.ExpiresUtc < nowDate) {
net\System\Net\Cache\RequestCacheEntry.cs (2)
90sb.Append("\r\nExpires = ").Append(ExpiresUtc == DateTime.MinValue? "": ExpiresUtc.ToString("r", CultureInfo.CurrentCulture));