NameValueConfigurationCollection.Item[String] Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit l'objet NameValueConfigurationElement selon le paramètre fourni.
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
Paramètres
- name
- String
Nom du NameValueConfigurationElement contenu dans la collection.
Valeur de propriété
Objet NameValueConfigurationElement.
Exemples
L’exemple de code suivant montre comment utiliser la Item[] propriété . Cet exemple de code fait partie d’un exemple plus grand fourni pour la NameValueConfigurationCollection classe .
// Item property.
Console.WriteLine("Value of property 'enabled': {0}",
myNameValConfigCollection["enabled"].Value);
' Item property.
Console.WriteLine("Value of property 'enabled': {0}", myNameValConfigCollection("enabled").Value)
Remarques
Utilisez la Item[] propriété pour obtenir ou définir un NameValueConfigurationElement objet en fonction du name
paramètre .