1 write to threadCallbackList
System (1)
compmod\microsoft\win32\SystemEvents.cs (1)
822
threadCallbackList
= new Queue();
11 references to threadCallbackList
System (11)
compmod\microsoft\win32\SystemEvents.cs (11)
765
Debug.Assert(
threadCallbackList
!= null, "Invoking marshaled callbacks before there are any");
768
lock (
threadCallbackList
) {
769
if (
threadCallbackList
.Count > 0) {
770
current = (Delegate)
threadCallbackList
.Dequeue();
792
lock (
threadCallbackList
) {
793
if (
threadCallbackList
.Count > 0) {
794
current = (Delegate)
threadCallbackList
.Dequeue();
818
if (
threadCallbackList
== null) {
820
if (
threadCallbackList
== null) {
829
lock (
threadCallbackList
) {
830
threadCallbackList
.Enqueue(method);