3 instantiations of MruCache
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\DnsCache.cs (1)
23
private 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)
23
private static
MruCache
<string, DnsCacheEntry> s_resolveCache = new MruCache<string, DnsCacheEntry>(mruWatermark);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (2)
40
private volatile
MruCache
<string, string> _credentialHashCache;
41
private volatile
MruCache
<string, HttpClient> _httpClientCache;