8 references to s_tasks
System.Net.NameResolution (8)
System\Net\Dns.cs (8)
738
lock (
s_tasks
)
741
s_tasks
.TryGetValue(key, out Task? prevTask);
748
Debug.Assert(!Monitor.IsEntered(
s_tasks
));
759
lock (
s_tasks
)
761
((ICollection<KeyValuePair<object, Task>>)
s_tasks
).Remove(new KeyValuePair<object, Task>(key!, task!));
772
lock (
s_tasks
)
774
((ICollection<KeyValuePair<object, Task>>)
s_tasks
).Remove(new KeyValuePair<object, Task>(key!, task));
782
s_tasks
[key] = task;