AngleSharp by Florian Rappl

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

.NET API 1,168,384 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 GetOwnAttribute(AttributeNames.Prompt); } set { SetOwnAttribute(AttributeNames.Prompt, value); } } public HtmlIsIndexElement(Document owner, string prefix = null) : base(owner, Tags.IsIndex, prefix, NodeFlags.Special) { } } }