DekGenius.com
[ Team LiB ] Previous Section Next Section

XmlLinkedNodeCF 1.0

System.Xml (system.xml.dll)abstract class

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 XmlNode NextSibling{get; }         
// overrides XmlNode
   public override XmlNode PreviousSibling{get; }     
// overrides XmlNode
}

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