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