AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.3.0-beta.476" />

.NET API 959,488 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; } } }