1 write to OptionalLength
System (1)
net\System\Net\Cache\IERequestCache.cs (1)
406entry.OptionalLength = (contentLength < 0L)? 0: contentLength > Int32.MaxValue? Int32.MaxValue: (int)(contentLength);
2 references to OptionalLength
System (2)
net\System\Net\Cache\IERequestCache.cs (1)
432Logging.PrintInfo(Logging.RequestCache, SR.GetString(SR.net_log_cache_expected_length, entry.OptionalLength));
net\System\Net\Cache\WinInetCache.cs (1)
340if (UnsafeNclNativeMethods.UnsafeWinInetCache.CreateUrlCacheEntryW(entry.Key, entry.OptionalLength, entry.FileExt, sb, 0)) {