XmlDocument.DocumentElement Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la racine XmlElement du document.
public:
property System::Xml::XmlElement ^ DocumentElement { System::Xml::XmlElement ^ get(); };
public System.Xml.XmlElement DocumentElement { get; }
member this.DocumentElement : System.Xml.XmlElement
Public ReadOnly Property DocumentElement As XmlElement
Valeur de propriété
Qui XmlElement représente la racine de l’arborescence de documents XML. Si aucune racine n’existe, null elle est retournée.
Exemples
L’exemple suivant affiche l’élément racine du document XML.
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
Output:
<book genre="novel" ISBN="1-861001-57-5"><title>Pride And Prejudice</title></book>