1 write to _threadCallbackList
System.Windows.Forms (1)
System\Windows\Forms\Control.cs (1)
6745_threadCallbackList ??= new Queue<ThreadMethodEntry>();
21 references to _threadCallbackList
System.Windows.Forms (21)
System\Windows\Forms\Control.cs (21)
3770if (IsDisposed && _threadCallbackList is not null && _threadCallbackList.Count > 0) 3772lock (_threadCallbackList) 3775while (_threadCallbackList.Count > 0) 3777ThreadMethodEntry entry = _threadCallbackList.Dequeue(); 4925if (RecreatingHandle && _threadCallbackList is not null) 4929lock (_threadCallbackList) 4954if (!RecreatingHandle && _threadCallbackList is not null) 4956lock (_threadCallbackList) 4960while (_threadCallbackList.Count > 0) 4962ThreadMethodEntry entry = _threadCallbackList.Dequeue(); 6417if (_threadCallbackList is not null) 6419lock (_threadCallbackList) 6421if (_threadCallbackList.Count > 0) 6423current = _threadCallbackList.Dequeue(); 6470if (_threadCallbackList is not null) 6472lock (_threadCallbackList) 6474current = _threadCallbackList.Count > 0 ? _threadCallbackList.Dequeue() : null; 6748lock (_threadCallbackList) 6755_threadCallbackList.Enqueue(tme);