Fix eglib targets and filters.
[mono.git] / docs / HtmlAgilityPack / HtmlParseErrorCode.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 parsing error.\r
6     /// </summary>\r
7     public enum HtmlParseErrorCode\r
8     {\r
9         /// <summary>\r
10         /// A tag was not closed.\r
11         /// </summary>\r
12         TagNotClosed,\r
13 \r
14         /// <summary>\r
15         /// A tag was not opened.\r
16         /// </summary>\r
17         TagNotOpened,\r
18 \r
19         /// <summary>\r
20         /// There is a charset mismatch between stream and declared (META) encoding.\r
21         /// </summary>\r
22         CharsetMismatch,\r
23 \r
24         /// <summary>\r
25         /// An end tag was not required.\r
26         /// </summary>\r
27         EndTagNotRequired,\r
28 \r
29         /// <summary>\r
30         /// An end tag is invalid at this position.\r
31         /// </summary>\r
32         EndTagInvalidHere\r
33     }\r
34 }