AngleSharp by Florian Rappl

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

.NET API 586,752 bytes

 HTMLMenuElement

public sealed class HTMLMenuElement : HTMLElement
Represents the HTML menu element.
namespace AngleSharp.DOM.Html { [DOM("HTMLMenuElement")] public sealed class HTMLMenuElement : HTMLElement { public enum MenuType : ushort { Popup, Toolbar } [DOM("type")] public MenuType Type { get { return Element.ToEnum(GetAttribute("type"), MenuType.Popup); } set { SetAttribute("type", value.ToString()); } } [DOM("label")] public string Label { get { return GetAttribute("label"); } set { SetAttribute("label", value); } } protected internal override bool IsSpecial => true; internal HTMLMenuElement() { _name = "menu"; } } }