XmlParserOptions
Contains a number of options for the XML parser.
using AngleSharp.Dom;
using System;
namespace AngleSharp.Parser.Xml
{
public struct XmlParserOptions
{
public bool IsSuppressingErrors { get; set; }
public Action<IElement, TextPosition> OnCreated { get; set; }
}
}