XmlEndOfFileToken
Represents the final token to mark the EOF.
namespace AngleSharp.Parser.Xml
{
internal sealed class XmlEndOfFileToken : XmlToken
{
public XmlEndOfFileToken()
{
_type = XmlTokenType.EndOfFile;
}
}
}