1 write to _items
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\SynchronizedPool.cs (1)
352
_items
= new Stack<T>();
11 references to _items
dotnet-svcutil-lib (11)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\SynchronizedPool.cs (11)
366
while (
_items
.Count > value)
368
_items
.Pop();
387
if (
_items
.Count == _maxCount)
389
_items
.Pop();
397
if (
_items
.Count > 0)
401
if (
_items
.Count > 0)
403
return
_items
.Pop();
412
if (
_items
.Count < this.MaxCount)
416
if (
_items
.Count < this.MaxCount)
418
_items
.Push(value);
430
_items
.Clear();