AngleSharp by Florian Rappl

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

.NET API 1,172,480 bytes

 HtmlIsIndexElement

Represents the HTML isindex element.
using AngleSharp.Html; namespace AngleSharp.Dom.Html { internal sealed class HtmlIsIndexElement : HtmlElement { public IHtmlFormElement Form { get; set; } public string Prompt { get { return GetAttribute(AttributeNames.Prompt); } set { SetAttribute(AttributeNames.Prompt, value); } } public HtmlIsIndexElement(Document owner) : base(owner, Tags.IsIndex, NodeFlags.Special) { } } }