SectionInformation.GetRawXml Yöntem

Tanım

İlişkili yapılandırma bölümü nesnesini temsil eden bir XML düğümü nesnesi döndürür.

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

Döndürülenler

String

Bu yapılandırma bölümünün XML gösterimi.

Özel durumlar

Bu yapılandırma nesnesi kilitli ve düzenlenemez.

Örnekler

Aşağıdaki örnekte yönteminin nasıl kullanılacağı gösterilmektedir GetRawXml .

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

Şunlara uygulanır