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