Fix watchos tests for system.data (#6600)
[mono-project.git] / docs / HtmlAgilityPack / HtmlParseErrorCode.cs
blobf92128de60506504c6c1d552597ab5c299f293e6
1 // HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
2 namespace HtmlAgilityPack
4 /// <summary>
5 /// Represents the type of parsing error.
6 /// </summary>
7 public enum HtmlParseErrorCode
9 /// <summary>
10 /// A tag was not closed.
11 /// </summary>
12 TagNotClosed,
14 /// <summary>
15 /// A tag was not opened.
16 /// </summary>
17 TagNotOpened,
19 /// <summary>
20 /// There is a charset mismatch between stream and declared (META) encoding.
21 /// </summary>
22 CharsetMismatch,
24 /// <summary>
25 /// An end tag was not required.
26 /// </summary>
27 EndTagNotRequired,
29 /// <summary>
30 /// An end tag is invalid at this position.
31 /// </summary>
32 EndTagInvalidHere