Gets a value indicating whether the current node is read-only.
[Visual Basic] MustOverride Public ReadOnly Property IsReadOnly As Boolean [C#] public bool IsReadOnly {abstract get;} [C++] public: __property virtual bool get_IsReadOnly() = 0; [JScript] public abstract function get IsReadOnly() : Boolean;
true if the the current node is read-only.
false if the node is read/write.
A read-only node is one that you cannot change any of its properties, attributes, or children. But you can remove it from the tree and insert it somewhere else. For example, the node for an EntityReference is typically read-only because its children actually come from the DTD definition of that entity and typically the DTD is read-only.
XmlNavigator Class | XmlNavigator Members | System.NewXml Namespace