AngleSharp by Florian Rappl

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

.NET API 371,712 bytes

 HTMLOptionElement

Represents the HTML option element.
public const string Tag = "option"

The option tag.

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.

Creates a new HTML option element.