Types of XML Nodes

When an XML document is read into memory as a tree of nodes, the node types for the nodes are decided when the nodes are created. The XML Document Object Model (DOM) has several kinds of node types, determined by the World Wide Web Consortium (W3C) and listed in section 1.1.1 The DOM Structure Model. The following table lists the node types, the object assigned to that node type, and a short description of each.

DOM node type Object Description
Document XmlDocument The container of all the nodes in the tree. It is also known as the document root, which is not always the same as the root element.
DocumentFragment XmlDocumentFragment A temporary bag containing one or more nodes without any tree structure.
DocumentType XmlDocumentType Represents the <!DOCTYPE…> node.
EntityReference XmlEntityReference Represents the non-expanded entity reference text.
Element XmlElement Represents an element node.
Attr XmlAttribute Is an attribute of an element.
ProcessingInstruction XmlProcessingInstruction Is a processing instruction node.
Comment XmlComment A comment node.
Text XmlText Text belonging to an element or attribute.
CDATASection XmlCDataSection Represents CDATA.
Entity XmlEntity Represents the <!ENTITY…> declarations in an XML document, either from an internal document type definition (DTD) subset or from external DTDs and parameter entities.
Notation XmlNotation Represents a notation declared in the DTD.

Even though an attribute (attr) is listed in the W3C DOM Level 1 section 1.2 Fundamental Interfaces as a node, it is not considered a child of any element node.

The following table shows additional node types not defined by the W3C, however they are available for use in the Microsoft .NET Framework object model as XmlNodeType enumerations. Therefore, there is no matching DOM node type column for these node types.

Node type Description
XmlDeclaration Represents the declaration node <?xml version="1.0"…>.
XmlSignificantWhitespace Represents significant white space, which is white space in mixed content.
XmlWhitespace Represents the white space in the content of an element.
EndElement Returned when XmlReader gets to the end of an element.

Example XML: </item>

For more information, see XmlNodeType.
EndEntity Returned when XmlReader gets to the end of the entity replacement as a result of a call to ResolveEntity. For more information, see XmlNodeType.

To view a code example that reads in XML and uses a case construct on the node types to print information about the node and its contents, see NodeType.

For more information on the object hierarchy of the node types and their equivalent object name, see XML Document Object Model (DOM) Hierarchy. For more information on the objects created in the node tree, see Mapping the Object Hierarchy to XML Data.

See also