SectionInformation.GetRawXml Método

Definição

Retorna um objeto de nó XML que representa o objeto da seção de configuração associada.

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

Retornos

A representação XML desta seção de configuração.

Exceções

Esse objeto de configuração está bloqueado e não pode ser editado.

Exemplos

O exemplo a seguir mostra como usar o método 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

Aplica-se a