AngleSharp by Florian Rappl

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

.NET API 451,072 bytes

 HTMLInputElement

Represents an HTML input element.
public enum InputType

An enumeration with possible input types.

public bool Checked { get; set; }

Gets or sets if the input element is checked or not.

public bool Disabled { get; set; }

Gets or sets if the input element is enabled or disabled.

public HTMLFormElement Form { get; }

Gets the associated HTML form element.

public bool Indeterminate { get; set; }

Gets or sets if the state if indeterminate.

public string Name { get; set; }

Gets or sets the value of the name attribute.

public bool Readonly { get; set; }

Gets or sets if the input field is read-only.

public bool Required { get; set; }

Gets or sets if the input field is required.

public InputType Type { get; set; }

Gets or sets the type of the input field.