AngleSharp by Florian Rappl

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

.NET API 1,172,480 bytes

 HtmlHtmlElement

Represents the HTML html element.
using AngleSharp.Dom.Css; using AngleSharp.Html; namespace AngleSharp.Dom.Html { internal sealed class HtmlHtmlElement : HtmlElement, IHtmlHtmlElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle { public string Manifest { get { return GetAttribute(AttributeNames.Manifest); } set { SetAttribute(AttributeNames.Manifest, value); } } public HtmlHtmlElement(Document owner) : base(owner, Tags.Html, NodeFlags.Special | NodeFlags.ImplicitelyClosed | NodeFlags.Scoped | NodeFlags.HtmlTableSectionScoped | NodeFlags.HtmlTableScoped) { } } }