次の方法で共有


XmlDocument.DocumentType プロパティ

DOCTYPE 宣言を格納しているノードを取得します。

Public Overridable ReadOnly Property DocumentType As _
   XmlDocumentType
[C#]
public virtual XmlDocumentType DocumentType {get;}
[C++]
public: __property virtual XmlDocumentType* get_DocumentType();
[JScript]
public function get DocumentType() : XmlDocumentType;

プロパティ値

DocumentType (DOCTYPE 宣言) を格納している XmlNode

解説

XmlDocument は、 XmlNodeType が DocumentType に等しい子を 1 つだけ持つことができます。

使用例

[Visual Basic, C#, C++] ドキュメントの DOCTYPE 宣言を取得し、表示する例を次に示します。

 
Option Explicit
Option Strict

Imports System
Imports System.IO
Imports System.Xml

Public Class Sample
    Public Shared Sub Main()
        ' Create the XmlDocument.
        Dim doc As New XmlDocument()
        doc.LoadXml("<!DOCTYPE book [<!ENTITY h 'hardcover'>]>" & _
                    "<book genre='novel' ISBN='1-861001-57-5'>" & _
                    "<title>Pride And Prejudice</title>" & _
                    "<style>&h;</style>" & _
                    "</book>")
        
        ' Display the DocumentType.
        Console.WriteLine(doc.DocumentType.OuterXml)
    End Sub 'Main 
End Class 'Sample

[C#] 
using System;
using System.IO;
using System.Xml;

public class Sample
{
  public static void Main()
  {
    // Create the XmlDocument.
    XmlDocument doc = new XmlDocument();
    doc.LoadXml("<!DOCTYPE book [<!ENTITY h 'hardcover'>]>" +
                "<book genre='novel' ISBN='1-861001-57-5'>" +
                "<title>Pride And Prejudice</title>" +
                "<style>&h;</style>" +
                "</book>");

    // Display the DocumentType.
    Console.WriteLine(doc.DocumentType.OuterXml);

  }
}

[C++] 
#using <mscorlib.dll>
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;

int main()
{
    // Create the XmlDocument.
    XmlDocument* doc = new XmlDocument();
    doc->LoadXml(S"<!DOCTYPE book [<!ENTITY h 'hardcover'>]>" 
                 S"<book genre='novel' ISBN='1-861001-57-5'>" 
                 S"<title>Pride And Prejudice</title>" 
                 S"<style>&h;</style>" 
                 S"</book>");

    // Display the DocumentType.
    Console::WriteLine(doc->DocumentType->OuterXml);
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

XmlDocument クラス | XmlDocument メンバ | System.Xml 名前空間 | XmlDocumentType