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