5 references to _counts
System.Net.Http (5)
System\Net\Http\SocketsHttpHandler\Metrics\SocketsHttpHandlerMetrics.cs (5)
78
_counts
.AddOrUpdate(key, 1, static (_, currentValue) => currentValue + 1);
91
if (!
_counts
.TryGetValue(key, out long currentValue))
103
if (
_counts
.TryRemove(new KeyValuePair<OpenConnectionsTagKey, long>(key, currentValue)))
112
if (
_counts
.TryUpdate(key, currentValue - 1, currentValue))
126
foreach (KeyValuePair<OpenConnectionsTagKey, long> entry in
_counts
)