Enum OptionValue
These are the possible values of FIDO2 Options.
public enum OptionValue
Fields
False = 2The value of the option, either specified or by default, is
false.NotSupported = 3The option is not listed and the default is "Not Supported".
True = 1The value of the option, either specified or by default, is
true.Unknown = 0The option is not listed and is not described in the standard, hence its value is unknown.
Remarks
If an option is specified, it will be True or False. If it
is not specified, it is its default value. Each option has its default
defined in section 6.4 of the FIDO2 standard. A default value can be
either True, False, or NotSupported. This enum adds
one more value, Unknown, if the given input option is not one
defined in the FIDO2 standard.
See also GetDefaultOptionValue(string).