3 instantiations of KeyValueConfigurationElement
System.Configuration.ConfigurationManager (3)
System\Configuration\KeyValueConfigurationCollection.cs (2)
48
KeyValueConfigurationElement element = new
KeyValueConfigurationElement
(key, value);
64
return new
KeyValueConfigurationElement
();
System\Configuration\KeyValueInternalCollection.cs (1)
20
_root.Settings.Add(new
KeyValueConfigurationElement
(key, value));
10 references to KeyValueConfigurationElement
System.Configuration (1)
System.Configuration.cs (1)
70
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Configuration.
KeyValueConfigurationElement
))]
System.Configuration.ConfigurationManager (9)
System\Configuration\KeyValueConfigurationCollection.cs (8)
6
[ConfigurationCollection(typeof(
KeyValueConfigurationElement
))]
21
public new
KeyValueConfigurationElement
this[string key] => (
KeyValueConfigurationElement
)BaseGet(key);
25
public void Add(
KeyValueConfigurationElement
keyValue)
32
KeyValueConfigurationElement
oldValue = (
KeyValueConfigurationElement
)BaseGet(keyValue.Key);
48
KeyValueConfigurationElement
element = new KeyValueConfigurationElement(key, value);
69
return ((
KeyValueConfigurationElement
)element).Key;
System\Configuration\KeyValueInternalCollection.cs (1)
15
foreach (
KeyValueConfigurationElement
element in _root.Settings) base.Add(element.Key, element.Value);