8 references to s_tasks
System.Net.NameResolution (8)
System\Net\Dns.cs (8)
893
lock (
s_tasks
)
896
s_tasks
.TryGetValue(key, out Task? prevTask);
903
Debug.Assert(!Monitor.IsEntered(
s_tasks
));
914
lock (
s_tasks
)
916
((ICollection<KeyValuePair<object, Task>>)
s_tasks
).Remove(new KeyValuePair<object, Task>(key!, task!));
927
lock (
s_tasks
)
929
((ICollection<KeyValuePair<object, Task>>)
s_tasks
).Remove(new KeyValuePair<object, Task>(key!, task));
937
s_tasks
[key] = task;