XmlDocument.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. XmlDocument 노드는 항상 .를 반환 false합니다.

예제

다음 예제에서는 속성을 사용 하는 방법을 보여 있습니다 IsReadOnly .

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.DocumentElement.LastChild.FirstChild.IsReadOnly)
       Console.WriteLine("Entity reference 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>")
        
        'Determine whether the node is read-only.
        If doc.DocumentElement.LastChild.FirstChild.IsReadOnly Then
            Console.WriteLine("Entity reference nodes are always read-only")
        End If 
    End Sub
End Class

설명

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

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

적용 대상