AngleSharp by AngleSharp

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

.NET API 1,230,848 bytes

 IHtmlFormElement

Represents the form HTML element.
string AcceptCharset { get; set; }

Gets or sets the character encodings that are to be used for the submission.

string Action { get; set; }

Gets or sets the form's name within the forms collection.

string Autocomplete { get; set; }

Gets or sets if autocomplete is turned on or off.

Gets all the form controls belonging to this form element.

string Encoding { get; set; }

Gets or sets the encoding to use for sending the form.

string Enctype { get; set; }

Gets or sets the encoding to use for sending the form.

IElement this[int index] { get; }

Gets the form element at the specified index.

IElement this[string name] { get; }

Gets the form element(s) with the specified name.

int Length { get; }

Gets the number of elements in the Elements collection.

string Method { get; set; }

Gets or sets the method to use for transmitting the form.

string Name { get; set; }

Gets or sets the value of the name attribute.

bool NoValidate { get; set; }

Gets or sets the indicator that the form is not to be validated during submission.

string Target { get; set; }

Gets or sets the target name of the response to the request.

Checks if the form is valid, i.e. if all fields fulfill their requirements.

Creates the document request from the form submitting itself.

Creates the document request from the form by submitting by some element.

Reports the current validity state after checking the current state interactively the constraints of the form element.

Requests the input fields to be automatically filled with previous entries.

void Reset()

Resets the form to the previous (default) state.

Submits the form element from the form element itself.

Submits the form element as triggered from another element.