[netcore] Remove local copy of static alc resolve methods
[mono-project.git] / docs / HtmlAgilityPack / HtmlElementFlag.cs
blob01232cda8ed8ce24322bbb4f0cffe8efbbced6a1
1 // HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
2 using System;
4 namespace HtmlAgilityPack
6 /// <summary>
7 /// Flags that describe the behavior of an Element node.
8 /// </summary>
9 [Flags]
10 public enum HtmlElementFlag
12 /// <summary>
13 /// The node is a CDATA node.
14 /// </summary>
15 CData = 1,
17 /// <summary>
18 /// The node is empty. META or IMG are example of such nodes.
19 /// </summary>
20 Empty = 2,
22 /// <summary>
23 /// The node will automatically be closed during parsing.
24 /// </summary>
25 Closed = 4,
27 /// <summary>
28 /// The node can overlap.
29 /// </summary>
30 CanOverlap = 8