AngleSharp by Florian Rappl

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

.NET API 586,752 bytes

 HTMLSelectElement

Represents the select element.
public enum SelectType

An enumeration with possible select types.

public int Length { get; }

Gets the number of option elements in this select element.

public bool Multiple { get; set; }

Gets the multiple HTML attribute, whichindicates whether multiple items can be selected.

public HTMLCollection Options { get; }

Gets the set of option elements contained by this element.

public bool Required { get; set; }

Gets or sets if the field is required.

public int SelectedIndex { get; }

Gets the index of the first selected option element.

Gets the set of options that are selected.

public SelectType Type { get; }

Gets the form control's type.

public string Value { get; set; }

Gets or sets the value of this form control, that is, of the first selected option.