KeyValueConfigurationCollection.Add Method

Definition

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)

Source:
KeyValueConfigurationCollection.cs
Source:
KeyValueConfigurationCollection.cs
Source:
KeyValueConfigurationCollection.cs
Source:
KeyValueConfigurationCollection.cs

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)

Source:
KeyValueConfigurationCollection.cs
Source:
KeyValueConfigurationCollection.cs
Source:
KeyValueConfigurationCollection.cs
Source:
KeyValueConfigurationCollection.cs

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.

Applies to