Compartilhar via


SectionInformation.Type Propriedade

Definição

Obtém ou define o nome de classe da seção.

public:
 property System::String ^ Type { System::String ^ get(); void set(System::String ^ value); };
public string Type { get; set; }
member this.Type : string with get, set
Public Property Type As String

Valor da propriedade

O nome da classe associada a esta ConfigurationSection seção.

Exceções

O valor selecionado é null ou uma cadeia de caracteres vazia ("").

Os conflitos de valor selecionados com um valor que já está definido.

Exemplos

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

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

    string sectionType = sInfo.Type;
    Console.WriteLine("Section type: {0}", sectionType);
}
Public Shared Sub GetSectionType() 
    Dim sInfo As SectionInformation = _
    GetSectionInformation()
    
    Dim sectionType As String = sInfo.Type
    Console.WriteLine("Section type: {0}", _
    sectionType)

End Sub

Comentários

A Type propriedade retorna o nome da classe de seção que manipula essa instância da ConfigurationSection classe .

Aplica-se a