1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6528_threadCallbackList ??= new Queue<ThreadMethodEntry>();
21 references to _threadCallbackList
System.Windows.Forms (21)
System\Windows\Forms\Control.cs (21)
3598if (IsDisposed && _threadCallbackList is not null && _threadCallbackList.Count > 0) 3600lock (_threadCallbackList) 3603while (_threadCallbackList.Count > 0) 3605ThreadMethodEntry entry = _threadCallbackList.Dequeue(); 4717if (RecreatingHandle && _threadCallbackList is not null) 4721lock (_threadCallbackList) 4746if (!RecreatingHandle && _threadCallbackList is not null) 4748lock (_threadCallbackList) 4752while (_threadCallbackList.Count > 0) 4754ThreadMethodEntry entry = _threadCallbackList.Dequeue(); 6200if (_threadCallbackList is not null) 6202lock (_threadCallbackList) 6204if (_threadCallbackList.Count > 0) 6206current = _threadCallbackList.Dequeue(); 6253if (_threadCallbackList is not null) 6255lock (_threadCallbackList) 6257current = _threadCallbackList.Count > 0 ? _threadCallbackList.Dequeue() : null; 6531lock (_threadCallbackList) 6538_threadCallbackList.Enqueue(tme);