8 references to s_tasks
System.Net.NameResolution (8)
System\Net\Dns.cs (8)
933
lock (
s_tasks
)
936
s_tasks
.TryGetValue(key, out Task? prevTask);
943
Debug.Assert(!Monitor.IsEntered(
s_tasks
));
954
lock (
s_tasks
)
956
((ICollection<KeyValuePair<object, Task>>)
s_tasks
).Remove(new KeyValuePair<object, Task>(key!, task!));
967
lock (
s_tasks
)
969
((ICollection<KeyValuePair<object, Task>>)
s_tasks
).Remove(new KeyValuePair<object, Task>(key!, task));
977
s_tasks
[key] = task;