Compartilhar via


NameValueConfigurationCollection.Item[String] Propriedade

Definição

Obtém ou define o objeto NameValueConfigurationElement com base no parâmetro fornecido.

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

Parâmetros

name
String

O nome do NameValueConfigurationElement contido na coleção.

Valor da propriedade

Um objeto NameValueConfigurationElement.

Exemplos

O exemplo de código a seguir demonstra como usar a Item[] propriedade . Este exemplo de código faz parte de um exemplo maior fornecido para a 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)

Comentários

Use a Item[] propriedade para obter ou definir um NameValueConfigurationElement objeto com base no name parâmetro .

Aplica-se a