次の方法で共有


XmlDocumentType.IsReadOnly プロパティ

ノードが読み取り専用かどうかを示す値を取得します。

Overrides Public ReadOnly Property IsReadOnly As Boolean
[C#]
public override bool IsReadOnly {get;}
[C++]
public: __property bool get_IsReadOnly();
[JScript]
public override function get IsReadOnly() : Boolean;

プロパティ値

ノードが読み取り専用の場合は true 。それ以外の場合は false

DocumentType ノードは読み取り専用であるため、このプロパティは常に true を返します。

解説

読み取り専用ノードは、プロパティ、属性、または子を変更できないノードです。ただし、読み取り専用ノードをツリーから削除し、どこか他の場所に挿入できます。

ドキュメントに要素ノードがない限り、そのドキュメントから XmlDocumentType を削除し、再びそのドキュメントに戻すことができます。ドキュメントにルート要素があると、その XmlDocumentType は変更できません。

このプロパティは、DOM (Document Object Model) に対する Microsoft 拡張機能です。

使用例

[Visual Basic, C#, C++] DocumentType ノードに関する情報を表示する例を次に示します。

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

    // Check if the node is read-only.
    if (doc.DocumentType.IsReadOnly)
       Console.WriteLine("Document type nodes are always read-only");

  }
}

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

    // Check if the node is read-only.
    if (doc->DocumentType->IsReadOnly)
       Console::WriteLine(S"Document type nodes are always read-only");
}

[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 ファミリ

参照

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