XmlDocumentType.IsReadOnly 속성

정의

노드가 읽기 전용인지 여부를 나타내는 값을 가져옵니다.

public:
 virtual property bool IsReadOnly { bool get(); };
public override bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public Overrides ReadOnly Property IsReadOnly As Boolean

속성 값

true노드가 읽기 전용이면 이고, 그렇지 않으면 . false

DocumentType 노드는 읽기 전용이므로 이 속성은 항상 반환됩니다 true.

예제

다음은 DocumentType 노드에 대한 정보를 표시하는 예제입니다.

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>");

    // Determine whether the node is read-only.
    if (doc.DocumentType.IsReadOnly)
       Console.WriteLine("Document type nodes are always read-only");
  }
}
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>")
        
        Dim doctype As XmlDocumentType = doc.DocumentType
        
        ' Determine whether the node is read-only.
        If doctype.IsReadOnly Then
            Console.WriteLine("Document type nodes are always read-only")
        End If 
    End Sub
End Class

설명

읽기 전용 노드는 속성, 특성 또는 자식을 변경할 수 없는 노드입니다. 그러나 트리에서 읽기 전용 노드를 제거하고 다른 곳에 삽입할 수 있습니다.

문서에서 요소 노드가 없는 경우 문서에서 제거한 후 다시 문서에 다시 삽입할 수 XmlDocumentType 있습니다. 문서에 루트 요소가 XmlDocumentType 있으면 변경할 수 없습니다.

이 속성은 DOM(문서 개체 모델)에 대한 Microsoft 확장입니다.

적용 대상