| only for RuBoard |
XmlNotation class in the System.Xml namespace is an implementation of the W3C Notation interface. This class represents a notation declaration <!NOTATION ... > . Table B.26 and Table B.27 list the properties and methods respectively found in the XmlNotation class.
| System.Xml.XmlNotation (Inherits XmlNode ) | Description | MSXML IXMLDOMNotation |
|---|---|---|
| CloneNode (Overrides XMLNode::CloneNode ) | Similar to XMLNode::Clone , but accepts a deep Boolean parameter indicating if the subtree should be duplicated . | cloneNode |
| InnerXml (Overrides XMLNode::InnerXml ) | Gets or sets the markup representing the children of the current node. | InnerXml (Overrides XMLNode::InnerXml ) |
| IsReadOnly (Overrides XMLNode::IsReadOnly ) | Returns a Boolean indicating whether the current node is read only. | |
| Name (Overrides XMLNode:: Name ) | Gets the qualified name of the node. | nodeName |
| NodeType (Overrides XMLNode::NodeType ) | Returns an XmlNodeType enumeration member representing this node's type. | nodeType (Gets an IXMLDOMNodeType enumeration member) |
| PublicId | Returns the value of the public identifier on the notation declaration. | publicId |
| SystemId | Returns the value of the system identifier on the notation declaration. | systemId |
| OuterXml (Overrides XmlNode::OuterXml ) | Gets the XML markup representing the current node and its children. Similar to InnerXml , except the current node is also returned. | xml |
| XmlNotation | Description | MSXML IXMLDOMNotation |
|---|---|---|
| CloneNode (Overrides XMLNode::CloneNode ) | Similar to XMLNode::Clone , but accepts a deep Boolean parameter indicating if the subtree should be duplicated. | cloneNode |
| WriteContentTo (Overrides XMLNode::WriteContentTo ) | Saves the contents of the XmlDocument node to the specified XmlWriter . No effect for XmlNotation nodes. | |
| WriteTo (Overrides XMLNode::WriteTo ) | Saves the XmlDocument node to the specified XmlWriter . No effect for XmlNotation nodes. |
| only for RuBoard |