OptionValue Class
Namespace: Yubico.YubiKey.Fido2 Assembly: Yubico.YubiKey.dllThese are the possible values of FIDO2 Options.
C#
public sealed class OptionValue : Enum
Inheritance
System.Object
OptionValue
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).
Fields
Name | Description |
---|---|
False | The value of the option, either specified or by default, is
|
NotSupported | The option is not listed and the default is "Not Supported". |
True | The value of the option, either specified or by default, is
|
Unknown | The option is not listed and is not described in the standard, hence its value is unknown. |
value__ |