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)
{
}
}
}