IXmlDocument
public interface IXmlDocument : IDocument, INode, IEventTarget, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode, IDisposable
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);
}
}