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