NameValueConfigurationCollection.Item[String] Property

Definition

Gets or sets the NameValueConfigurationElement object based on the supplied parameter.

public:
 property System::Configuration::NameValueConfigurationElement ^ default[System::String ^] { System::Configuration::NameValueConfigurationElement ^ get(System::String ^ name); void set(System::String ^ name, System::Configuration::NameValueConfigurationElement ^ value); };
public System.Configuration.NameValueConfigurationElement this[string name] { get; set; }
member this.Item(string) : System.Configuration.NameValueConfigurationElement with get, set
Default Public Property Item(name As String) As NameValueConfigurationElement

Parameters

name
String

The name of the NameValueConfigurationElement contained in the collection.

Property Value

A NameValueConfigurationElement object.

Examples

The following code example demonstrates how to use the Item[] property. This code example is part of a larger example provided for the NameValueConfigurationCollection class.

// Item property.
Console.WriteLine("Value of property 'enabled': {0}",
 myNameValConfigCollection["enabled"].Value);
' Item property.
Console.WriteLine("Value of property 'enabled': {0}", myNameValConfigCollection("enabled").Value)

Remarks

Use the Item[] property to get or set a NameValueConfigurationElement object based on the name parameter.

Applies to