1 write to Info
System (1)
net\System\Net\Cache\WinInetCache.cs (1)
325entry.Info = *bufferPtr;
53 references to Info
System (53)
net\System\Net\Cache\IERequestCache.cs (22)
174while (entry.Info.UseCount != 0) { 176if(Logging.On)Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_usecount_file, "WinInetCache.TryRemove()", entry.Info.UseCount, entry.Filename)); 408entry.Info.ExpireTime = _WinInetCache.FILETIME.Zero; 410entry.Info.ExpireTime = new _WinInetCache.FILETIME(expiresUtc.ToFileTimeUtc()); 413entry.Info.LastModifiedTime = _WinInetCache.FILETIME.Zero; 415entry.Info.LastModifiedTime = new _WinInetCache.FILETIME(lastModifiedUtc.ToFileTimeUtc()); 418entry.Info.EntryType = _WinInetCache.EntryType.NormalEntry; 423entry.Info.U.ExemptDelta = (int)maxStale.TotalSeconds; 424entry.Info.EntryType = _WinInetCache.EntryType.StickyEntry; 433Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_last_modified, (entry.Info.LastModifiedTime.IsNull? "0": DateTime.FromFileTimeUtc(entry.Info.LastModifiedTime.ToLong()).ToString("r")))); 434Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_expires, (entry.Info.ExpireTime.IsNull? "0": DateTime.FromFileTimeUtc(entry.Info.ExpireTime.ToLong()).ToString("r")))); 526entry.Info.ExpireTime = new _WinInetCache.FILETIME(expiresUtc.ToFileTimeUtc()); 532entry.Info.LastModifiedTime = new _WinInetCache.FILETIME(lastModifiedUtc.ToFileTimeUtc()); 538entry.Info.LastSyncTime = new _WinInetCache.FILETIME(lastSynchronizedUtc.ToFileTimeUtc()); 544entry.Info.EntryType = _WinInetCache.EntryType.NormalEntry; 549entry.Info.EntryType = _WinInetCache.EntryType.StickyEntry; 550entry.Info.U.ExemptDelta = (int)maxStale.TotalSeconds; 554entry.Info.U.ExemptDelta = 0; 1087if ((m_Entry.Info.EntryType & _WinInetCache.EntryType.StickyEntry) == _WinInetCache.EntryType.StickyEntry) 1099if(Logging.On)Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_max_stale_and_update_status, "WinInetWriteFile.Close()", m_Entry.Info.U.ExemptDelta, m_Entry.Error.ToString()));
net\System\Net\Cache\RequestCacheEntry.cs (14)
55m_StreamSize = ((long)entry.Info.SizeHigh<<32) | (long)((ulong)entry.Info.SizeLow); 56m_ExpiresUtc = (entry.Info.ExpireTime.IsNull? DateTime.MinValue: DateTime.FromFileTimeUtc(entry.Info.ExpireTime.ToLong())); 57m_HitCount = entry.Info.HitRate; 58m_LastAccessedUtc= (entry.Info.LastAccessTime.IsNull? DateTime.MinValue: DateTime.FromFileTimeUtc(entry.Info.LastAccessTime.ToLong())); 59m_LastModifiedUtc= (entry.Info.LastModifiedTime.IsNull? DateTime.MinValue: DateTime.FromFileTimeUtc(entry.Info.LastModifiedTime.ToLong())); 60m_LastSynchronizedUtc= (entry.Info.LastSyncTime.IsNull? DateTime.MinValue: DateTime.FromFileTimeUtc(entry.Info.LastSyncTime.ToLong())); 61m_MaxStale = TimeSpan.FromSeconds(entry.Info.U.ExemptDelta); 66m_UsageCount = entry.Info.UseCount; 67m_IsPartialEntry = (entry.Info.EntryType & _WinInetCache.EntryType.Sparse) != 0;
net\System\Net\Cache\WinInetCache.cs (17)
211Info.EntryType = EntryType.NormalEntry; 370entry.Info.ExpireTime, 371entry.Info.LastModifiedTime, 372entry.Info.EntryType, 401*ePtr = newEntry.Info; 435newEntry.Info.ExpireTime = oldEntry.Info.ExpireTime; 439newEntry.Info.LastModifiedTime = oldEntry.Info.LastModifiedTime; 443newEntry.Info.EntryType = oldEntry.Info.EntryType; 444newEntry.Info.U.ExemptDelta = oldEntry.Info.U.ExemptDelta; 445if ((oldEntry.Info.EntryType & EntryType.StickyEntry) == EntryType.StickyEntry) { 453wasEdited = (oldEntry.Info.EntryType & EntryType.Edited) != 0; 457oldEntry.Info.EntryType |= EntryType.Edited; 478oldEntry.Info.EntryType &= ~EntryType.Edited;