NameValueConfigurationCollection.Item[String] Property
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.
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.