AngleSharp by Florian Rappl

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

.NET API 377,344 bytes

 HTMLOptGroupElement

public sealed class HTMLOptGroupElement : HTMLElement
Represents the HTML optgroup element.
namespace AngleSharp.DOM.Html { public sealed class HTMLOptGroupElement : HTMLElement { internal const string Tag = "optgroup"; public string Label { get { return GetAttribute("label"); } set { SetAttribute("label", value); } } public bool Disabled { get { return GetAttribute("disabled") != null; } set { SetAttribute("disabled", value ? string.Empty : null); } } protected internal override bool IsSpecial => false; internal HTMLOptGroupElement() { _name = "optgroup"; } } }