only for RuBoard - do not distribute or recompile Previous Section Next Section
XmlLinkedNode abstract class

System.Xml (system.xml.dll)

This type of node class is the base class for node types that are not top-level (i.e., nodes that require a parent). For example, XmlCharacterData and XmlElement are derived from XmlLinkedNode.

public abstract class XmlLinkedNode : XmlNode {
// Public Instance Properties
   public override field XmlNode NextSibling{get; }              // overrides XmlNode
   public override field XmlNode PreviousSibling{get; }          // overrides XmlNode
}

Hierarchy

System.Objectfigs/U2192.gif XmlNode(System.ICloneable, System.Collections.IEnumerable, System.Xml.XPath.IXPathNavigable)figs/U2192.gif XmlLinkedNode

Subclasses

XmlCharacterData, XmlDeclaration, XmlDocumentType, XmlElement, XmlEntityReference, XmlProcessingInstruction

only for RuBoard - do not distribute or recompile Previous Section Next Section