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