AngleSharp by AngleSharp

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

 ISvgDocument

Serves as an entry point to the content of an SVG document.
using AngleSharp.Attributes; using AngleSharp.Dom.Events; using System; namespace AngleSharp.Dom.Svg { [DomName("SVGDocument")] public interface ISvgDocument : IDocument, INode, IEventTarget, IMarkupFormattable, IParentNode, IGlobalEventHandlers, IDocumentStyle, INonElementParentNode, IDisposable { [DomName("rootElement")] ISvgSvgElement RootElement { get; } } }