1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6526_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(); 6198if (_threadCallbackList is not null) 6200lock (_threadCallbackList) 6202if (_threadCallbackList.Count > 0) 6204current = _threadCallbackList.Dequeue(); 6251if (_threadCallbackList is not null) 6253lock (_threadCallbackList) 6255current = _threadCallbackList.Count > 0 ? _threadCallbackList.Dequeue() : null; 6529lock (_threadCallbackList) 6536_threadCallbackList.Enqueue(tme);