Struct ParsedOption
Represents a parsed option.
public struct ParsedOption
- Inherited Members
Constructors
ParsedOption(OptionForm, object)
Creates a parsed option from a form and a value.
public ParsedOption(OptionForm form, object value)
Parameters
formOptionFormThe form of the option that was parsed.
valueobjectThe parsed arguments to the option.
Properties
Form
Gets the form of the option that was parsed.
public readonly OptionForm Form { get; }
Property Value
- OptionForm
The parsed form.
Value
Gets the value of the option, parsed from the option's arguments.
public readonly object Value { get; }
Property Value
- object
The parsed value.