// HtmlAgilityPack V1.0 - Simon Mourier using System; namespace HtmlAgilityPack { /// /// Flags that describe the behavior of an Element node. /// [Flags] public enum HtmlElementFlag { /// /// The node is a CDATA node. /// CData = 1, /// /// The node is empty. META or IMG are example of such nodes. /// Empty = 2, /// /// The node will automatically be closed during parsing. /// Closed = 4, /// /// The node can overlap. /// CanOverlap = 8 } }