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