13 references to _contextQueue
System.Net.HttpListener (13)
System\Net\Managed\HttpListener.Managed.cs (13)
164lock ((_contextQueue as ICollection).SyncRoot) 166int idx = _contextQueue.IndexOf(context); 168_contextQueue.RemoveAt(idx); 200lock ((_contextQueue as ICollection).SyncRoot) 201_contextQueue.Add(context); 237lock ((_contextQueue as ICollection).SyncRoot) 239var ctxs = (HttpListenerContext[])_contextQueue.ToArray(); 240_contextQueue.Clear(); 259lock ((_contextQueue as ICollection).SyncRoot) 261if (_contextQueue.Count == 0) 266HttpListenerContext context = _contextQueue[0]; 267_contextQueue.RemoveAt(0); 286lock ((_contextQueue as ICollection).SyncRoot)