5 references to _counts
System.Net.Http (5)
System\Net\Http\Metrics\MetricsHandler.cs (5)
73
_counts
.AddOrUpdate(key, 1, static (_, currentValue) => currentValue + 1);
86
if (!
_counts
.TryGetValue(key, out long currentValue))
98
if (
_counts
.TryRemove(new KeyValuePair<ActiveRequestsTagKey, long>(key, currentValue)))
107
if (
_counts
.TryUpdate(key, currentValue - 1, currentValue))
121
foreach (KeyValuePair<ActiveRequestsTagKey, long> entry in
_counts
)