1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6500_threadCallbackList ??= new Queue<ThreadMethodEntry>();
21 references to _threadCallbackList
System.Windows.Forms (21)
System\Windows\Forms\Control.cs (21)
3572if (IsDisposed && _threadCallbackList is not null && _threadCallbackList.Count > 0) 3574lock (_threadCallbackList) 3577while (_threadCallbackList.Count > 0) 3579ThreadMethodEntry entry = _threadCallbackList.Dequeue(); 4691if (RecreatingHandle && _threadCallbackList is not null) 4695lock (_threadCallbackList) 4720if (!RecreatingHandle && _threadCallbackList is not null) 4722lock (_threadCallbackList) 4726while (_threadCallbackList.Count > 0) 4728ThreadMethodEntry entry = _threadCallbackList.Dequeue(); 6172if (_threadCallbackList is not null) 6174lock (_threadCallbackList) 6176if (_threadCallbackList.Count > 0) 6178current = _threadCallbackList.Dequeue(); 6225if (_threadCallbackList is not null) 6227lock (_threadCallbackList) 6229current = _threadCallbackList.Count > 0 ? _threadCallbackList.Dequeue() : null; 6503lock (_threadCallbackList) 6510_threadCallbackList.Enqueue(tme);