AngleSharp by Florian Rappl

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

.NET API 393,728 bytes

 HTMLIsIndexElement

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