1 instantiation of DbConnectionPoolAuthenticationContextKey
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlInternalConnectionTds.cs (1)
2226
_dbConnectionPoolAuthenticationContextKey = new
DbConnectionPoolAuthenticationContextKey
(fedAuthInfo.stsurl, fedAuthInfo.spn);
6 references to DbConnectionPoolAuthenticationContextKey
System.Data (6)
fx\src\data\System\Data\ProviderBase\DbConnectionPool.cs (3)
432
private readonly ConcurrentDictionary<
DbConnectionPoolAuthenticationContextKey
, DbConnectionPoolAuthenticationContext> _pooledDbAuthenticationContexts;
495
_pooledDbAuthenticationContexts = new ConcurrentDictionary<
DbConnectionPoolAuthenticationContextKey
, DbConnectionPoolAuthenticationContext>(concurrencyLevel: 4 * Environment.ProcessorCount /* default value in ConcurrentDictionary*/,
597
internal ConcurrentDictionary<
DbConnectionPoolAuthenticationContextKey
, DbConnectionPoolAuthenticationContext> AuthenticationContexts
fx\src\data\System\Data\ProviderBase\DbConnectionPoolAuthenticationContextKey.cs (2)
73
DbConnectionPoolAuthenticationContextKey
otherKey = obj as
DbConnectionPoolAuthenticationContextKey
;
fx\src\data\System\Data\SqlClient\SqlInternalConnectionTds.cs (1)
147
private
DbConnectionPoolAuthenticationContextKey
_dbConnectionPoolAuthenticationContextKey;