3 writes to _poolCollection
System.Data (3)
fx\src\data\System\Data\ProviderBase\DbConnectionPoolGroup.cs (3)
65_poolCollection = new ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool>(); 130_poolCollection = new ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool>(); 284_poolCollection = newPoolCollection;
9 references to _poolCollection
System.Data (9)
fx\src\data\System\Data\ProviderBase\DbConnectionPoolGroup.cs (9)
128if (_poolCollection.Count > 0) { 129oldPoolCollection = _poolCollection; 155return _poolCollection.Count; 186if (!_poolCollection.TryGetValue(currentIdentity, out pool)) { // find the pool 191if (!_poolCollection.TryGetValue(currentIdentity, out pool)) { 200bool addResult = _poolCollection.TryAdd(currentIdentity, newPool); 249if (_poolCollection.Count > 0) { 252foreach (var entry in _poolCollection) { 289if (0 == _poolCollection.Count) {