3 instantiations of MruCache
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\DnsCache.cs (1)
23private static MruCache<string, DnsCacheEntry> s_resolveCache = new MruCache<string, DnsCacheEntry>(mruWatermark);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (2)
251_httpClientCache = new MruCache<string, HttpClient>(10); 555_credentialHashCache = new MruCache<string, string>(5);
3 references to MruCache
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\DnsCache.cs (1)
23private static MruCache<string, DnsCacheEntry> s_resolveCache = new MruCache<string, DnsCacheEntry>(mruWatermark);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (2)
40private volatile MruCache<string, string> _credentialHashCache; 41private volatile MruCache<string, HttpClient> _httpClientCache;