1 instantiation of DbConnectionPoolIdentity
System.Data.OleDb (1)
System\Data\ProviderBase\DbConnectionPoolIdentity.cs (1)
23public static readonly DbConnectionPoolIdentity NoIdentity = new DbConnectionPoolIdentity(string.Empty, false, true);
16 references to DbConnectionPoolIdentity
System.Data.OleDb (16)
System\Data\ProviderBase\DbConnectionPool.cs (4)
339private readonly DbConnectionPoolIdentity? _identity; 374DbConnectionPoolIdentity identity) 505get { return (null != _identity && DbConnectionPoolIdentity.NoIdentity != _identity); } 1427if (UsingIntegrateSecurity && !_identity!.Equals(DbConnectionPoolIdentity.GetCurrent()))
System\Data\ProviderBase\DbConnectionPoolGroup.cs (8)
32private ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool> _poolCollection; 58_poolCollection = new ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool>(); 129ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool>? oldPoolCollection = null; 135_poolCollection = new ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool>(); 179DbConnectionPoolIdentity? currentIdentity = DbConnectionPoolIdentity.NoIdentity; 186currentIdentity = DbConnectionPoolIdentity.GetCurrent(); 271var newPoolCollection = new ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool>();
System\Data\ProviderBase\DbConnectionPoolIdentity.cs (4)
23public static readonly DbConnectionPoolIdentity NoIdentity = new DbConnectionPoolIdentity(string.Empty, false, true); 48DbConnectionPoolIdentity that = ((DbConnectionPoolIdentity)value); 54internal static DbConnectionPoolIdentity GetCurrent()