NameValueConfigurationCollection.Add Method
Adds a NameValueConfigurationElement object to the collection.
Namespace: System.Configuration
Assembly: System.Configuration (in System.Configuration.dll)
Parameters
- nameValue
- Type: System.Configuration.NameValueConfigurationElement
A NameValueConfigurationElement object.
Use the Add method to add a new NameValueConfigurationElement object to the collection.
The following code example demonstrates how to use the Add method. This code example is part of a larger example provided for the NameValueConfigurationCollection class.
foreach (PropertyInformation propertyItem in configSection.ElementInformation.Properties) { // Assign domain name. if (propertyItem.Name == "domain") propertyItem.Value = "MyDomain"; if (propertyItem.Value != null) { // Enable SSL for cookie exchange. if (propertyItem.Name == "cookieRequireSSL") propertyItem.Value = true; NameValueConfigurationElement nameValConfigElement = new NameValueConfigurationElement (propertyItem.Name.ToString(), propertyItem.Value.ToString()); // Add a NameValueConfigurationElement // to the collection. myNameValConfigCollection.Add(nameValConfigElement); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.