SectionInformation.Type Proprietà

Definizione

Ottiene o imposta il nome della classe della sezione.

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

Valore della proprietà

Nome della classe associata a questa sezione ConfigurationSection.

Eccezioni

Il valore selezionato è null oppure una stringa vuota ("").

Il valore selezionato è in conflitto con un valore già definito.

Esempio

Nell'esempio seguente viene illustrato come ottenere il Type valore di un ConfigurationSection oggetto.

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

Commenti

La Type proprietà restituisce il nome della classe di sezione che gestisce questa istanza della ConfigurationSection classe.

Si applica a