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