Restructure of mono.sln and build properties to better fix static/dynamic library...
[mono.git] / docs / HtmlAgilityPack / HtmlNodeType.cs
1 // HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>\r
2 namespace HtmlAgilityPack\r
3 {\r
4     /// <summary>\r
5     /// Represents the type of a node.\r
6     /// </summary>\r
7     public enum HtmlNodeType\r
8     {\r
9         /// <summary>\r
10         /// The root of a document.\r
11         /// </summary>\r
12         Document,\r
13 \r
14         /// <summary>\r
15         /// An HTML element.\r
16         /// </summary>\r
17         Element,\r
18 \r
19         /// <summary>\r
20         /// An HTML comment.\r
21         /// </summary>\r
22         Comment,\r
23 \r
24         /// <summary>\r
25         /// A text node is always the child of an element or a document node.\r
26         /// </summary>\r
27         Text,\r
28     }\r
29 }