ConfigurationElement.Item[] Propriété

Définition

Obtient ou définit une propriété, un attribut ou un élément enfant de cet objet ConfigurationElement.

Surcharges

Item[ConfigurationProperty]

Obtient ou définit une propriété ou un attribut de cet élément de configuration.

Item[String]

Obtient ou définit une propriété, un attribut ou un élément enfant de cet élément de configuration.

Remarques

Utilisez cette méthode pour obtenir ou définir les valeurs d’un ConfigurationProperty objet .

Item[ConfigurationProperty]

Source:
ConfigurationElement.cs
Source:
ConfigurationElement.cs
Source:
ConfigurationElement.cs

Obtient ou définit une propriété ou un attribut de cet élément de configuration.

protected:
 property System::Object ^ default[System::Configuration::ConfigurationProperty ^] { System::Object ^ get(System::Configuration::ConfigurationProperty ^ prop); void set(System::Configuration::ConfigurationProperty ^ prop, System::Object ^ value); };
protected public:
 property System::Object ^ default[System::Configuration::ConfigurationProperty ^] { System::Object ^ get(System::Configuration::ConfigurationProperty ^ prop); void set(System::Configuration::ConfigurationProperty ^ prop, System::Object ^ value); };
protected object this[System.Configuration.ConfigurationProperty prop] { get; set; }
protected internal object this[System.Configuration.ConfigurationProperty prop] { get; set; }
member this.Item(System.Configuration.ConfigurationProperty) : obj with get, set
Default Protected Property Item(prop As ConfigurationProperty) As Object
Default Protected Friend Property Item(prop As ConfigurationProperty) As Object

Paramètres

prop
ConfigurationProperty

Propriété à laquelle accéder.

Valeur de propriété

Propriété, attribut ou élément enfant spécifié.

Exceptions

prop est null ou n'existe pas dans l'élément.

prop est en lecture seule ou verrouillé.

Remarques

Utilisez la Item[] propriété pour obtenir ou définir les valeurs d’un ConfigurationProperty objet .

En C#, cette propriété est l'indexeur correspondant à la classe ConfigurationSectionCollection.

S’applique à

Item[String]

Source:
ConfigurationElement.cs
Source:
ConfigurationElement.cs
Source:
ConfigurationElement.cs

Obtient ou définit une propriété, un attribut ou un élément enfant de cet élément de configuration.

protected:
 property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ propertyName); void set(System::String ^ propertyName, System::Object ^ value); };
protected public:
 property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ propertyName); void set(System::String ^ propertyName, System::Object ^ value); };
protected object this[string propertyName] { get; set; }
protected internal object this[string propertyName] { get; set; }
member this.Item(string) : obj with get, set
Default Protected Property Item(propertyName As String) As Object
Default Protected Friend Property Item(propertyName As String) As Object

Paramètres

propertyName
String

Nom du ConfigurationProperty auquel accéder.

Valeur de propriété

Propriété, attribut ou élément enfant spécifié.

Exceptions

prop est en lecture seule ou verrouillé.

Remarques

Utilisez la Item[] propriété pour obtenir ou définir les valeurs d’un ConfigurationProperty objet .

En C#, cette propriété est l'indexeur correspondant à la classe ConfigurationSectionCollection.

S’applique à