7 references to ConcurrentDictionary
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfXamlType.cs (2)
56
_members = new
ConcurrentDictionary
<string, XamlMember>(ConcurrencyLevel, Capacity);
68
_attachableMembers = new
ConcurrentDictionary
<string, XamlMember>(ConcurrencyLevel, Capacity);
System (1)
net\System\Net\_SSPIWrapper.cs (1)
91
return new
ConcurrentDictionary
<string, SafeFreeCredentials>(Environment.ProcessorCount, s_DefaultCredentialsHandleCacheSize);
System.Data (4)
fx\src\data\System\Data\ProviderBase\DbConnectionPool.cs (1)
495
_pooledDbAuthenticationContexts = new
ConcurrentDictionary
<DbConnectionPoolAuthenticationContextKey, DbConnectionPoolAuthenticationContext>(concurrencyLevel: 4 * Environment.ProcessorCount /* default value in ConcurrentDictionary*/,
fx\src\data\System\Data\SqlClient\SqlAeadAes256CbcHmac256Factory.cs (1)
23
new
ConcurrentDictionary
<string, SqlAeadAes256CbcHmac256Algorithm>(concurrencyLevel: 4 * Environment.ProcessorCount /* default value in ConcurrentDictionary*/, capacity: 2);
fx\src\data\System\Data\SqlClient\SqlAes256CbcFactory.cs (1)
25
new
ConcurrentDictionary
<string, SqlAes256CbcAlgorithm>(concurrencyLevel: 4 * Environment.ProcessorCount /* default value in ConcurrentDictionary*/, capacity: 2);
fx\src\data\System\Data\SqlClient\SqlClientEncryptionAlgorithmFactoryList.cs (1)
23
_encryptionAlgoFactoryList = new
ConcurrentDictionary
<string, SqlClientEncryptionAlgorithmFactory>(concurrencyLevel: 4 * Environment.ProcessorCount /* default value in ConcurrentDictionary*/, capacity: 2);