8 references to s_tasks
System.Net.NameResolution (8)
System\Net\Dns.cs (8)
940
lock (
s_tasks
)
943
s_tasks
.TryGetValue(key, out Task? prevTask);
950
Debug.Assert(!Monitor.IsEntered(
s_tasks
));
961
lock (
s_tasks
)
963
((ICollection<KeyValuePair<object, Task>>)
s_tasks
).Remove(new KeyValuePair<object, Task>(key!, task!));
974
lock (
s_tasks
)
976
((ICollection<KeyValuePair<object, Task>>)
s_tasks
).Remove(new KeyValuePair<object, Task>(key!, task));
984
s_tasks
[key] = task;