1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6505_threadCallbackList ??= new Queue<ThreadMethodEntry>();
21 references to _threadCallbackList
System.Windows.Forms (21)
System\Windows\Forms\Control.cs (21)
3577if (IsDisposed && _threadCallbackList is not null && _threadCallbackList.Count > 0) 3579lock (_threadCallbackList) 3582while (_threadCallbackList.Count > 0) 3584ThreadMethodEntry entry = _threadCallbackList.Dequeue(); 4696if (RecreatingHandle && _threadCallbackList is not null) 4700lock (_threadCallbackList) 4725if (!RecreatingHandle && _threadCallbackList is not null) 4727lock (_threadCallbackList) 4731while (_threadCallbackList.Count > 0) 4733ThreadMethodEntry entry = _threadCallbackList.Dequeue(); 6177if (_threadCallbackList is not null) 6179lock (_threadCallbackList) 6181if (_threadCallbackList.Count > 0) 6183current = _threadCallbackList.Dequeue(); 6230if (_threadCallbackList is not null) 6232lock (_threadCallbackList) 6234current = _threadCallbackList.Count > 0 ? _threadCallbackList.Dequeue() : null; 6508lock (_threadCallbackList) 6515_threadCallbackList.Enqueue(tme);