KeyValueConfigurationCollection.Add Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a KeyValueConfigurationElement object to the collection.
Overloads
Add(KeyValueConfigurationElement) |
Adds a KeyValueConfigurationElement object to the collection based on the supplied parameters. |
Add(String, String) |
Adds a KeyValueConfigurationElement object to the collection based on the supplied parameters. |
Add(KeyValueConfigurationElement)
Adds a KeyValueConfigurationElement object to the collection based on the supplied parameters.
public:
void Add(System::Configuration::KeyValueConfigurationElement ^ keyValue);
public void Add (System.Configuration.KeyValueConfigurationElement keyValue);
member this.Add : System.Configuration.KeyValueConfigurationElement -> unit
Public Sub Add (keyValue As KeyValueConfigurationElement)
Parameters
Examples
The following code example demonstrates how to use the Add method. This code example is part of a larger example provided for the KeyValueConfigurationCollection class overview.
// Add KeyValueConfigurationElement to collection.
config.AppSettings.Settings.Add(myAdminKeyVal);
' Add KeyValueConfigurationElement to collection.
config.AppSettings.Settings.Add(myAdminKeyVal)
Remarks
Use the Add method to add a new KeyValueConfigurationElement object to the collection.
Applies to
Add(String, String)
Adds a KeyValueConfigurationElement object to the collection based on the supplied parameters.
public:
void Add(System::String ^ key, System::String ^ value);
public void Add (string key, string value);
member this.Add : string * string -> unit
Public Sub Add (key As String, value As String)
Parameters
- key
- String
A string specifying the key.
- value
- String
A string specifying the value.