// HtmlAgilityPack V1.0 - Simon Mourier namespace HtmlAgilityPack { /// /// Represents the type of a node. /// public enum HtmlNodeType { /// /// The root of a document. /// Document, /// /// An HTML element. /// Element, /// /// An HTML comment. /// Comment, /// /// A text node is always the child of an element or a document node. /// Text, } }