NameValueConfigurationCollection.Item[String] Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera lub ustawia NameValueConfigurationElement obiekt na podstawie podanego parametru.
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
Parametry
- name
- String
Nazwa NameValueConfigurationElement elementu zawartego w kolekcji.
Wartość właściwości
Obiekt NameValueConfigurationElement.
Przykłady
W poniższym przykładzie kodu pokazano, jak używać Item[] właściwości . Ten przykład kodu jest częścią większego przykładu udostępnionego NameValueConfigurationCollection dla klasy .
// Item property.
Console.WriteLine("Value of property 'enabled': {0}",
myNameValConfigCollection["enabled"].Value);
' Item property.
Console.WriteLine("Value of property 'enabled': {0}", myNameValConfigCollection("enabled").Value)
Uwagi
Item[] Użyj właściwości , aby pobrać lub ustawić NameValueConfigurationElement obiekt na podstawie parametru name
.