14 references to _items
System.Configuration.ConfigurationManager (14)
System\Configuration\ConfigurationPropertyCollection.cs (14)
19for (int index = 0; index < _items.Count; index++) 21ConfigurationProperty cp = (ConfigurationProperty)_items[index]; 22if (cp.Name == name) return (ConfigurationProperty)_items[index]; 28public int Count => _items.Count; 32public object SyncRoot => _items; 36_items.CopyTo(array, index); 41return _items.GetEnumerator(); 51for (int index = 0; index < _items.Count; index++) 53ConfigurationProperty cp = (ConfigurationProperty)_items[index]; 61if (Contains(property.Name) != true) _items.Add(property); 66for (int index = 0; index < _items.Count; index++) 68ConfigurationProperty cp = (ConfigurationProperty)_items[index]; 71_items.RemoveAt(index); 79_items.Clear();