AngleSharp by AngleSharp

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

.NET API 882,176 bytes

 HtmlButtonElement

Represents an HTML button element.
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 string 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 string 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.

public HtmlButtonElement(Document owner, string prefix = null)

Creates a new HTML button element.