7 references to LastModified
System (7)
net\System\Net\Cache\FtpRequestCacheValidator.cs (6)
284
if(Logging.On) Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_response_last_modified, resp.
LastModified
.ToUniversalTime().ToString("r", CultureInfo.InvariantCulture), resp.ContentLength));
294
if (resp.
LastModified
.ToUniversalTime() == CacheEntry.LastModifiedUtc)
442
if (CacheEntry.LastModifiedUtc != DateTime.MinValue && resp.
LastModified
.ToUniversalTime() != CacheEntry.LastModifiedUtc)
444
if(Logging.On)Logging.PrintWarning(Logging.RequestCache, SR.GetString(SR.net_log_cache_removed_entry_because_ftp_restart_response_changed, CacheEntry.LastModifiedUtc.ToString("r", CultureInfo.InvariantCulture), resp.
LastModified
.ToUniversalTime().ToString("r", CultureInfo.InvariantCulture)));
462
if (resp.
LastModified
!= DateTime.MinValue)
464
CacheEntry.LastModifiedUtc = resp.
LastModified
.ToUniversalTime();
net\System\Net\NetWebProxyFinder.cs (1)
295
lastModified = ftpResponse.
LastModified
;