XmlDocument.DocumentElement 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
문서의 루트 XmlElement를 가져옵니다.
public:
property System::Xml::XmlElement ^ DocumentElement { System::Xml::XmlElement ^ get(); };
public System.Xml.XmlElement DocumentElement { get; }
public System.Xml.XmlElement? DocumentElement { get; }
member this.DocumentElement : System.Xml.XmlElement
Public ReadOnly Property DocumentElement As XmlElement
속성 값
XML 문서 트리의 루트를 나타내는 XmlElement
입니다. 루트가 없으면 null
이 반환됩니다.
예제
다음 예제에서는 XML 문서의 루트 요소를 표시합니다.
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
//Create the XmlDocument.
XmlDocument^ doc = gcnew XmlDocument;
doc->LoadXml( "<?xml version='1.0' ?><book genre='novel' ISBN='1-861001-57-5'><title>Pride And Prejudice</title></book>" );
//Display the document element.
Console::WriteLine( doc->DocumentElement->OuterXml );
}
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
//Create the XmlDocument.
XmlDocument doc = new XmlDocument();
doc.LoadXml("<?xml version='1.0' ?>" +
"<book genre='novel' ISBN='1-861001-57-5'>" +
"<title>Pride And Prejudice</title>" +
"</book>");
//Display the document element.
Console.WriteLine(doc.DocumentElement.OuterXml);
}
}
Option Strict
Option Explicit
Imports System.IO
Imports System.Xml
Public Class Sample
Public Shared Sub Main()
'Create the XmlDocument.
Dim doc As New XmlDocument()
doc.LoadXml("<?xml version='1.0' ?>" & _
"<book genre='novel' ISBN='1-861001-57-5'>" & _
"<title>Pride And Prejudice</title>" & _
"</book>")
'Display the document element.
Console.WriteLine(doc.DocumentElement.OuterXml)
End Sub
End Class
출력:
<book genre="novel" ISBN="1-861001-57-5"><title>Pride And Prejudice</title></book>