SectionInformation.Name Propriedade

Definição

Obtém o nome da seção de configuração associada.

public:
 property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
member this.Name : string
Public ReadOnly Property Name As String

Valor da propriedade

O nome completo da seção de configuração.

Exemplos

O exemplo a seguir mostra como obter o Name valor de um ConfigurationSection objeto .

static public void GetSectionNameProperty()
{
    SectionInformation sInfo =
        GetSectionInformation();

    string sectionNameProperty = sInfo.Name;
    Console.WriteLine("Section name: {0}", 
        sectionNameProperty);
}
Public Shared Sub GetSectionNameProperty() 

    Dim sInfo As SectionInformation = _
    GetSectionInformation()
    
    Dim sectionNameProperty _
    As String = sInfo.Name
    Console.WriteLine("Section name: {0}", _
    sectionNameProperty)

End Sub

Comentários

O Name é o nome da seção sem o caminho.

Aplica-se a