AngleSharp by Florian Rappl

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

.NET API 465,920 bytes

 HTMLOptionElement

public sealed class HTMLOptionElement : HTMLElement
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 string Name { get; set; }

Gets or sets the value of the name attribute.

public bool Selected { get; set; }

Gets or sets if the option is currently selected. http://www.w3.org/html/wg/drafts/html/master/forms.html#ask-for-a-reset

public string Text { get; set; }

Gets or sets the text of the option.

public string Value { get; set; }

Gets or sets the value.