AngleSharp by Florian Rappl

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

.NET API 559,104 bytes

 HTMLButtonElement

Represents an HTML button element.
public enum ButtonType

An enumeration with possible input types.

public string AccessKey { get; set; }

Gets or sets the accesskey HTML attribute.

public string FormAction { get; set; }

Gets or sets the URI of a resource that processes information submitted by the button. If specified, this attribute overrides the action attribute of the form element that owns this element.

public string FormEncType { get; set; }

Gets or sets the type of content that is used to submit the form to the server. If specified, this attribute overrides the enctype attribute of the form element that owns this element.

public HttpMethod FormMethod { get; set; }

Gets or sets the HTTP method that the browser uses to submit the form. If specified, this attribute overrides the method attribute of the form element that owns this element.

public bool FormNoValidate { get; set; }

Gets or sets that the form is not to be validated when it is submitted. If specified, this attribute overrides the enctype attribute of the form element that owns this element.

public string FormTarget { get; set; }

Gets or sets A name or keyword indicating where to display the response that is received after submitting the form. If specified, this attribute overrides the target attribute of the form element that owns this element.

public ButtonType Type { get; set; }

Gets or sets the behavior of the button.

public string Value { get; set; }

Gets or sets the current value of the control.