// HtmlAgilityPack V1.0 - Simon Mourier
namespace HtmlAgilityPack
{
///
/// Represents the type of parsing error.
///
public enum HtmlParseErrorCode
{
///
/// 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
}
}