// Description: Html Agility Pack - HTML Parsers, selectors, traversors, manupulators. // Website & Documentation: http://html-agility-pack.net // Forum & Issues: https://github.com/zzzprojects/html-agility-pack // License: https://github.com/zzzprojects/html-agility-pack/blob/master/LICENSE // More projects: http://www.zzzprojects.com/ // Copyright © ZZZ Projects Inc. 2014 - 2017. All rights reserved. namespace Sandbox.Html { /// /// Represents the type of parsing error. /// internal enum ParseErrorCode { /// /// A tag was not closed. /// TagNotClosed, /// /// A tag was not opened. /// TagNotOpened, /// /// There is a charset mismatch between stream and declared (META) encoding. /// CharsetMismatch, /// /// An end tag was not required. /// EndTagNotRequired, /// /// An end tag is invalid at this position. /// EndTagInvalidHere } }