1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6754_threadCallbackList ??= new Queue<ThreadMethodEntry>();
21 references to _threadCallbackList
System.Windows.Forms (21)
System\Windows\Forms\Control.cs (21)
3779if (IsDisposed && _threadCallbackList is not null && _threadCallbackList.Count > 0) 3781lock (_threadCallbackList) 3784while (_threadCallbackList.Count > 0) 3786ThreadMethodEntry entry = _threadCallbackList.Dequeue(); 4934if (RecreatingHandle && _threadCallbackList is not null) 4938lock (_threadCallbackList) 4963if (!RecreatingHandle && _threadCallbackList is not null) 4965lock (_threadCallbackList) 4969while (_threadCallbackList.Count > 0) 4971ThreadMethodEntry entry = _threadCallbackList.Dequeue(); 6426if (_threadCallbackList is not null) 6428lock (_threadCallbackList) 6430if (_threadCallbackList.Count > 0) 6432current = _threadCallbackList.Dequeue(); 6479if (_threadCallbackList is not null) 6481lock (_threadCallbackList) 6483current = _threadCallbackList.Count > 0 ? _threadCallbackList.Dequeue() : null; 6757lock (_threadCallbackList) 6764_threadCallbackList.Enqueue(tme);