This documentation is archived and is not being maintained.
XmlDocument.IsReadOnly Property
Visual Studio 2008
Gets a value indicating whether the current node is read-only.
Assembly: System.Xml (in System.Xml.dll)
Property Value
Type: System.Booleantrue if the current node is read-only; otherwise false. XmlDocument nodes always return false.
The following example shows how to use the IsReadOnly property.
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"); } }
#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->DocumentElement->LastChild->FirstChild->IsReadOnly) Console::WriteLine(S"Entity reference nodes are always read-only"); }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: