XmlDocumentType.IsReadOnly 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
노드가 읽기 전용인지를 나타내는 값을 가져옵니다.
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.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>" );
// Check if the node is read-only.
if ( doc->DocumentType->IsReadOnly )
Console::WriteLine( "Document type nodes are always read-only" );
}
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 확장입니다.