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