Class SetResponseOverrideBitsCommandSettings
Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.
public sealed class SetResponseOverrideBitsCommandSettings : ICommand
- Inheritance
-
SetResponseOverrideBitsCommandSettings
- Implements
- Inherited Members
Properties
AuthenticatorId
Gets or sets the authenticatorId
[JsonPropertyName("authenticatorId")]
public string AuthenticatorId { get; set; }
Property Value
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
IsBadUP
If isBadUP is set, overrides the UP bit in the flags in the authenticator response to be zero. Defaults to false.
[JsonPropertyName("isBadUP")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? IsBadUP { get; set; }
Property Value
- bool?
IsBadUV
If isBadUV is set, overrides the UV bit in the flags in the authenticator response to be zero. Defaults to false.
[JsonPropertyName("isBadUV")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? IsBadUV { get; set; }
Property Value
- bool?
IsBogusSignature
If isBogusSignature is set, overrides the signature in the authenticator response to be zero. Defaults to false.
[JsonPropertyName("isBogusSignature")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? IsBogusSignature { get; set; }
Property Value
- bool?