[netcore] Remove local copy of static alc resolve methods
[mono-project.git] / docs / HtmlAgilityPack / HtmlNodeType.cs
bloba84e4af47058770e9a32758047570d413048ee19
1 // HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
2 namespace HtmlAgilityPack
4 /// <summary>
5 /// Represents the type of a node.
6 /// </summary>
7 public enum HtmlNodeType
9 /// <summary>
10 /// The root of a document.
11 /// </summary>
12 Document,
14 /// <summary>
15 /// An HTML element.
16 /// </summary>
17 Element,
19 /// <summary>
20 /// An HTML comment.
21 /// </summary>
22 Comment,
24 /// <summary>
25 /// A text node is always the child of an element or a document node.
26 /// </summary>
27 Text,