AngleSharp by Florian Rappl

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

.NET API 681,472 bytes

 HTMLBaseElement

public sealed class HTMLBaseElement : HTMLElement
Represents the HTML base element.
namespace AngleSharp.DOM.Html { [DOM("HTMLBaseElement")] public sealed class HTMLBaseElement : HTMLElement { [DOM("href")] public string Href { get { return GetAttribute(AttributeNames.Href); } set { SetAttribute(AttributeNames.Href, value); } } [DOM("target")] public string Target { get { return GetAttribute(AttributeNames.Target); } set { SetAttribute(AttributeNames.Target, value); } } protected internal override bool IsSpecial => true; internal HTMLBaseElement() { _name = "base"; } } }