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>