AngleSharp by AngleSharp

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

.NET API 964,608 bytes

 IHtmlMenuElement

Represents the menu HTML element.
using AngleSharp.Attributes; using AngleSharp.Dom; using AngleSharp.Dom.Events; using System.Runtime.CompilerServices; namespace AngleSharp.Html.Dom { [DomName("HTMLMenuElement")] public interface IHtmlMenuElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers { [System.Runtime.CompilerServices.Nullable(2)] [DomName("label")] string Label { [System.Runtime.CompilerServices.NullableContext(2)] get; [System.Runtime.CompilerServices.NullableContext(2)] set; } [System.Runtime.CompilerServices.Nullable(2)] [DomName("type")] string Type { [System.Runtime.CompilerServices.NullableContext(2)] get; [System.Runtime.CompilerServices.NullableContext(2)] set; } } }