1 write to _connectionContainers
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlDependencyListener.cs (1)
1263_connectionContainers = new Dictionary<SqlConnectionContainerHashHelper, SqlConnectionContainer>();
11 references to _connectionContainers
System.Data (11)
fx\src\data\System\Data\SqlClient\SqlDependencyListener.cs (11)
1393lock (_connectionContainers) { 1396foreach (KeyValuePair<SqlConnectionContainerHashHelper, SqlConnectionContainer> entry in _connectionContainers) { 1404_connectionContainers.Remove(hashHelper); 1508lock (_connectionContainers) { 1509if (!_connectionContainers.ContainsKey(hashHelper)) { 1512_connectionContainers.Add(hashHelper, container); 1517container = _connectionContainers[hashHelper]; 1580lock (_connectionContainers) { 1581if (_connectionContainers.ContainsKey(hashHelper)) { 1582SqlConnectionContainer container = _connectionContainers[hashHelper]; 1589_connectionContainers.Remove(hashHelper); // Remove from collection.