1 write to objectQueue
System.ServiceModel (1)
System\ServiceModel\Channels\QueuedObjectPool.cs (1)
44this.objectQueue = new Queue<T>(batchAllocCount);
9 references to objectQueue
System.ServiceModel (9)
System\ServiceModel\Channels\QueuedObjectPool.cs (9)
51return this.objectQueue; 59if (this.objectQueue.Count < this.maxFreeCount && ! this.isClosed) 61this.objectQueue.Enqueue(value); 75if (this.objectQueue.Count == 0) 80return this.objectQueue.Dequeue(); 88foreach (T item in this.objectQueue) 96this.objectQueue.Clear(); 109Fx.Assert(this.objectQueue.Count == 0, "The object queue must be empty for new allocations"); 112this.objectQueue.Enqueue(Create());