1 instantiation of DbConnectionPoolIdentity
System.Data.Odbc (1)
Common\System\Data\ProviderBase\DbConnectionPoolIdentity.cs (1)
8public static readonly DbConnectionPoolIdentity NoIdentity = new DbConnectionPoolIdentity(string.Empty, false, true);
17 references to DbConnectionPoolIdentity
System.Data.Odbc (17)
Common\System\Data\ProviderBase\DbConnectionPool.cs (5)
99private readonly DbConnectionPoolIdentity? _identity; 136DbConnectionPoolIdentity identity, 222internal DbConnectionPoolIdentity? Identity 265get { return (null != _identity && DbConnectionPoolIdentity.NoIdentity != _identity); } 953if (UsingIntegrateSecurity && !_identity!.Equals(DbConnectionPoolIdentity.GetCurrent()))
Common\System\Data\ProviderBase\DbConnectionPoolIdentity.cs (4)
8public static readonly DbConnectionPoolIdentity NoIdentity = new DbConnectionPoolIdentity(string.Empty, false, true); 28internal static DbConnectionPoolIdentity GetCurrent() 38DbConnectionPoolIdentity that = ((DbConnectionPoolIdentity)value);
src\libraries\Common\src\System\Data\ProviderBase\DbConnectionPoolGroup.cs (8)
33private ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool> _poolCollection; 58_poolCollection = new ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool>(); 105ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool>? oldPoolCollection = null; 111_poolCollection = new ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool>(); 144DbConnectionPoolIdentity? currentIdentity = DbConnectionPoolIdentity.NoIdentity; 152currentIdentity = DbConnectionPoolIdentity.GetCurrent(); 237var newPoolCollection = new ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool>();