2 writes to asyncWaiters
System.ServiceModel.Internals (2)
System\Runtime\AsyncWaitHandle.cs (2)
52this.asyncWaiters = new List<AsyncWaiter>(); 168this.asyncWaiters = null;
9 references to asyncWaiters
System.ServiceModel.Internals (9)
System\Runtime\AsyncWaitHandle.cs (9)
50if (this.asyncWaiters == null) 55this.asyncWaiters.Add(waiter); 82if (thisPtr.asyncWaiters != null && thisPtr.asyncWaiters.Remove(waiter)) 167toCallList = this.asyncWaiters; 176else if (this.asyncWaiters != null && this.asyncWaiters.Count > 0) 178toCall = this.asyncWaiters[0]; 179this.asyncWaiters.RemoveAt(0);