AngleSharp by Florian Rappl

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

.NET API 737,792 bytes

 HTMLOptionElement

Represents the HTML option element.
public bool DefaultSelected { get; set; }

Gets or sets if the option is selected by default.

public bool Disabled { get; set; }

Gets or sets if the option is enabled or disabled.

public HTMLFormElement Form { get; }

Gets the associated HTML form element.

public int Index { get; }

Gets the index of the option element.

public string Label { get; set; }

Gets or sets the label.

public bool Selected { get; set; }

Gets or sets if the option is currently selected.

public string Text { get; set; }

Gets or sets the text of the option.

public string Value { get; set; }

Gets or sets the value.