13 references to _activeConnections
dotnet-watch (13)
AbstractBrowserRefreshServer.cs (13)
48
lock (
_activeConnections
)
50
connectionsToDispose = [..
_activeConnections
];
51
_activeConnections
.Clear();
117
lock (
_activeConnections
)
119
_activeConnections
.Add(connection);
185
lock (
_activeConnections
)
187
return [..
_activeConnections
.Where(b => b.ClientSocket.State == WebSocketState.Open)];
195
lock (
_activeConnections
)
198
for (var i = 0; i <
_activeConnections
.Count; i++)
200
var connection =
_activeConnections
[i];
203
_activeConnections
[j++] = connection;
212
_activeConnections
.RemoveRange(j,
_activeConnections
.Count - j);