AngleSharp by Florian Rappl

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

.NET API 586,752 bytes

 HTMLIsIndexElement

public sealed class HTMLIsIndexElement : HTMLElement
Represents the HTML isindex element.
namespace AngleSharp.DOM.Html { [DOM("HTMLIsIndexElement")] public sealed class HTMLIsIndexElement : HTMLElement { [DOM("form")] public HTMLFormElement Form { get; set; } [DOM("prompt")] public string Prompt { get { return GetAttribute("prompt"); } set { SetAttribute("prompt", value); } } protected internal override bool IsSpecial => true; internal HTMLIsIndexElement() { _name = "isindex"; } } }