XmlDocument.DocumentType 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DOCTYPE 선언이 포함된 노드를 가져옵니다.
public:
virtual property System::Xml::XmlDocumentType ^ DocumentType { System::Xml::XmlDocumentType ^ get(); };
public virtual System.Xml.XmlDocumentType? DocumentType { get; }
public virtual System.Xml.XmlDocumentType DocumentType { get; }
member this.DocumentType : System.Xml.XmlDocumentType
Public Overridable ReadOnly Property DocumentType As XmlDocumentType
속성 값
DocumentType(DOCTYPE 선언)이 포함된 XmlNode입니다.
예제
다음 예제에서는 문서의 DOCTYPE 선언을 가져오고 표시합니다.
#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( "<!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 );
}
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);
}
}
Option Explicit
Option Strict
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
End Class
설명
한 XmlDocument
자식은 DocumentType과 같은 자식 XmlNodeType 하나만 가질 수 있습니다.
참고
이 속성은 읽기 전용입니다. DocumentType 노드를 변경하려면 기존 노드를 삭제하고, 메서드를 사용하여 새 노드를 CreateDocumentType 만들고, 문서에 새 노드를 추가합니다.