Table of Contents

Interface IHtmlKeygenElement

Namespace
AngleSharp.Html.Dom
Assembly
AngleSharp.dll

Represents the keygen HTML element.

[DomName("HTMLKeygenElement")]
public interface IHtmlKeygenElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers, IValidation
Inherited Members
Extension Methods

Properties

Autofocus

Gets or sets the autofocus HTML attribute, which indicates whether the control should have input focus when the page loads.

[DomName("autofocus")]
bool Autofocus { get; set; }

Property Value

bool

Challenge

Gets or sets the challenge attribute.

[DomName("challenge")]
string? Challenge { get; set; }

Property Value

string

Form

Gets the associated HTML form element.

[DomName("form")]
IHtmlFormElement? Form { get; }

Property Value

IHtmlFormElement

IsDisabled

Gets or sets if the keygen is enabled or disabled.

[DomName("disabled")]
bool IsDisabled { get; set; }

Property Value

bool

KeyEncryption

Gets or sets the type of encryption used.

[DomName("keytype")]
string? KeyEncryption { get; set; }

Property Value

string

Labels

Gets the list of assigned labels.

[DomName("labels")]
INodeList Labels { get; }

Property Value

INodeList

Name

Gets or sets the name of the element.

[DomName("name")]
string? Name { get; set; }

Property Value

string

Type

Gets the type of input control (keygen).

[DomName("type")]
string Type { get; }

Property Value

string