AngleSharp by AngleSharp

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

.NET API 1,232,384 bytes

 HtmlIsIndexElement

Represents the HTML isindex element.
using AngleSharp.Extensions; using AngleSharp.Html; namespace AngleSharp.Dom.Html { internal sealed class HtmlIsIndexElement : HtmlElement { public IHtmlFormElement Form { get; set; } public string Prompt { get { return this.GetOwnAttribute(AttributeNames.Prompt); } set { this.SetOwnAttribute(AttributeNames.Prompt, value); } } public HtmlIsIndexElement(Document owner, string prefix = null) : base(owner, TagNames.IsIndex, prefix, NodeFlags.Special) { } } }