1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6391_threadCallbackList ??= new Queue<ThreadMethodEntry>();
21 references to _threadCallbackList
System.Windows.Forms (21)
System\Windows\Forms\Control.cs (21)
3503if (IsDisposed && _threadCallbackList is not null && _threadCallbackList.Count > 0) 3505lock (_threadCallbackList) 3508while (_threadCallbackList.Count > 0) 3510ThreadMethodEntry entry = _threadCallbackList.Dequeue(); 4622if (RecreatingHandle && _threadCallbackList is not null) 4626lock (_threadCallbackList) 4651if (!RecreatingHandle && _threadCallbackList is not null) 4653lock (_threadCallbackList) 4657while (_threadCallbackList.Count > 0) 4659ThreadMethodEntry entry = _threadCallbackList.Dequeue(); 6063if (_threadCallbackList is not null) 6065lock (_threadCallbackList) 6067if (_threadCallbackList.Count > 0) 6069current = _threadCallbackList.Dequeue(); 6116if (_threadCallbackList is not null) 6118lock (_threadCallbackList) 6120current = _threadCallbackList.Count > 0 ? _threadCallbackList.Dequeue() : null; 6394lock (_threadCallbackList) 6401_threadCallbackList.Enqueue(tme);