1 write to items
System.ServiceModel (1)
System\ServiceModel\SynchronizedDisposablePool.cs (1)
17
this.
items
= new List<T>();
12 references to items
System.ServiceModel (12)
System\ServiceModel\SynchronizedDisposablePool.cs (12)
34
if (this.
items
.Count > 0)
36
items = new T[this.
items
.Count];
37
this.
items
.CopyTo(items, 0);
38
this.
items
.Clear();
61
if (!disposed && this.
items
.Count < this.maxCount)
65
if (!disposed && this.
items
.Count < this.maxCount)
67
this.
items
.Add(value);
77
if (!disposed && this.
items
.Count > 0)
81
if (!disposed && this.
items
.Count > 0)
83
int index = this.
items
.Count - 1;
84
T item = this.
items
[index];
85
this.
items
.RemoveAt(index);