AngleSharp by AngleSharp

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

 ISvgElement

The SVGElement interface represents any SVG element. Some elements directly implement this interface, other implement it via an interface that inherit it.
using AngleSharp.Attributes; using AngleSharp.Dom.Css; namespace AngleSharp.Dom.Svg { [DomName("SVGElement")] public interface ISvgElement : IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle { } }