7 writes to LastSynchronizedUtc
System (7)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (1)
374ctx.CacheEntry.LastSynchronizedUtc = DateTime.UtcNow;
net\System\Net\Cache\_SingleItemRequestCache.cs (3)
57LastSynchronizedUtc = entry.LastSynchronizedUtc; 215requestCacheEntry.LastSynchronizedUtc = DateTime.UtcNow; 279chkEntry.LastSynchronizedUtc = lastSynchronizedUtc;
net\System\Net\Cache\FtpRequestCacheValidator.cs (2)
469CacheEntry.LastSynchronizedUtc = DateTime.UtcNow; 488CacheEntry.LastSynchronizedUtc = nowUtc;
net\System\Net\Cache\HttpRequestCacheValidator.cs (1)
529CacheEntry.LastSynchronizedUtc = DateTime.UtcNow;
17 references to LastSynchronizedUtc
System (17)
net\System\Net\Cache\_RequestCacheProtocol.cs (1)
594_Validator.CacheEntry.LastSynchronizedUtc,
net\System\Net\Cache\_Rfc2616CacheValidators.cs (7)
516else if (ctx.CacheEntry.LastSynchronizedUtc != DateTime.MinValue) { 520age = nowDate - ctx.CacheEntry.LastSynchronizedUtc; 526Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_age1_last_synchronized_age_header, ((int)age.TotalSeconds).ToString(NumberFormatInfo.InvariantInfo), ctx.CacheEntry.LastSynchronizedUtc.ToString("r", CultureInfo.InvariantCulture), ((int)ctx.CacheAge.TotalSeconds).ToString(NumberFormatInfo.InvariantInfo))); 528Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_age1_last_synchronized, ((int)age.TotalSeconds).ToString(NumberFormatInfo.InvariantInfo), ctx.CacheEntry.LastSynchronizedUtc.ToString("r", CultureInfo.InvariantCulture))); 594date = ctx.CacheEntry.LastSynchronizedUtc; 899if(Logging.On)Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_policy_cache_sync_date, ctx.Policy.InternalCacheSyncDateUtc.ToString("r", CultureInfo.CurrentCulture), ctx.CacheEntry.LastSynchronizedUtc.ToString(CultureInfo.CurrentCulture))); 900if (ctx.CacheEntry.LastSynchronizedUtc < ctx.Policy.InternalCacheSyncDateUtc) {
net\System\Net\Cache\_SingleItemRequestCache.cs (1)
57LastSynchronizedUtc = entry.LastSynchronizedUtc;
net\System\Net\Cache\FtpRequestCacheValidator.cs (6)
153if(CacheEntry.LastSynchronizedUtc != DateTime.MinValue) 155age = nowDate - CacheEntry.LastSynchronizedUtc; 156if(Logging.On)Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_age1, ((int)age.TotalSeconds).ToString(NumberFormatInfo.InvariantInfo), CacheEntry.LastSynchronizedUtc.ToString("r", CultureInfo.InvariantCulture))); 476if(Logging.On)Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_last_synchronized, CacheEntry.LastSynchronizedUtc.ToString("r", CultureInfo.InvariantCulture))); 479if (CacheEntry.LastSynchronizedUtc + TimeSpan.FromMinutes(1) >= nowUtc) 490if(Logging.On)Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_updating_last_synchronized, CacheEntry.LastSynchronizedUtc.ToString("r", CultureInfo.InvariantCulture)));
net\System\Net\Cache\RequestCacheEntry.cs (2)
93sb.Append("\r\nLastSynchronized = ").Append(LastSynchronizedUtc == DateTime.MinValue? "": LastSynchronizedUtc.ToString("r", CultureInfo.CurrentCulture));