AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.0" />

 IXmlDocument

The XMLDocument interface represent an XML document. It inherits from the generic Document and do not add any specific methods or properties to it: nevertheless, several algorithms behave differently with the two types of documents.
using AngleSharp.Attributes; using AngleSharp.Dom.Events; using System; namespace AngleSharp.Dom.Xml { [DomName("XMLDocument")] public interface IXmlDocument : IDocument, INode, IEventTarget, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode, IDisposable { [DomName("load")] void LoadXml(string url); } }