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)
1393
lock (
_connectionContainers
) {
1396
foreach (KeyValuePair<SqlConnectionContainerHashHelper, SqlConnectionContainer> entry in
_connectionContainers
) {
1404
_connectionContainers
.Remove(hashHelper);
1508
lock (
_connectionContainers
) {
1509
if (!
_connectionContainers
.ContainsKey(hashHelper)) {
1512
_connectionContainers
.Add(hashHelper, container);
1517
container =
_connectionContainers
[hashHelper];
1580
lock (
_connectionContainers
) {
1581
if (
_connectionContainers
.ContainsKey(hashHelper)) {
1582
SqlConnectionContainer container =
_connectionContainers
[hashHelper];
1589
_connectionContainers
.Remove(hashHelper); // Remove from collection.