8 references to s_tasks
System.Net.NameResolution (8)
System\Net\Dns.cs (8)
947
lock (
s_tasks
)
950
s_tasks
.TryGetValue(key, out Task? prevTask);
957
Debug.Assert(!Monitor.IsEntered(
s_tasks
));
968
lock (
s_tasks
)
970
((ICollection<KeyValuePair<object, Task>>)
s_tasks
).Remove(new KeyValuePair<object, Task>(key!, task!));
981
lock (
s_tasks
)
983
((ICollection<KeyValuePair<object, Task>>)
s_tasks
).Remove(new KeyValuePair<object, Task>(key!, task));
991
s_tasks
[key] = task;