[ Team LiB ] Previous Section Next Section

XmlLinkedNodeSystem.Xml (system.xml.dll) CF 1.0 abstract class 

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

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.

Hierarchy

System.Object XmlNode(System.ICloneable, System.Collections.IEnumerable, System.Xml.XPath.IXPathNavigable) XmlLinkedNode

Subclasses

XmlCharacterData, XmlDeclaration, XmlDocumentType, XmlElement, XmlEntityReference, XmlProcessingInstruction

    [ Team LiB ] Previous Section Next Section