3 instantiations of KeyValueConfigurationElement
System.Configuration.ConfigurationManager (3)
System\Configuration\KeyValueConfigurationCollection.cs (2)
48KeyValueConfigurationElement element = new KeyValueConfigurationElement(key, value); 64return 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))] 21public new KeyValueConfigurationElement this[string key] => (KeyValueConfigurationElement)BaseGet(key); 25public void Add(KeyValueConfigurationElement keyValue) 32KeyValueConfigurationElement oldValue = (KeyValueConfigurationElement)BaseGet(keyValue.Key); 48KeyValueConfigurationElement element = new KeyValueConfigurationElement(key, value); 69return ((KeyValueConfigurationElement)element).Key;
System\Configuration\KeyValueInternalCollection.cs (1)
15foreach (KeyValueConfigurationElement element in _root.Settings) base.Add(element.Key, element.Value);