AngleSharp by Florian Rappl

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

.NET API 481,792 bytes

 HTMLBaseElement

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