Freigeben über


SectionInformation.GetRawXml Methode

Definition

Gibt ein XML-Knotenobjekt zurück, das das zugeordnete Konfigurationsabschnittsobjekt darstellt.

public:
 System::String ^ GetRawXml();
public string GetRawXml ();
member this.GetRawXml : unit -> string
Public Function GetRawXml () As String

Gibt zurück

Die XML-Darstellung für diesen Konfigurationsabschnitt.

Ausnahmen

Dieses Konfigurationsobjekt ist gesperrt und kann nicht bearbeitet werden.

Beispiele

Im folgenden Beispiel wird die Verwendung der GetRawXml-Methode gezeigt.

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

    string sectionXml =
        sInfo.GetRawXml();

    Console.WriteLine("Section xml:");
    Console.WriteLine(sectionXml);
}
Public Shared Sub GetSectionXml()

    Dim sInfo As SectionInformation = _
    GetSectionInformation()

    Dim sectionXml As String = sInfo.GetRawXml()

    Console.WriteLine("Section xml:")
    Console.WriteLine(sectionXml)

End Sub

Gilt für: