WebAuthnClientSetResponseOverrideBitsAsync Method |
Version 109.1.110
Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.
Namespace:
CefSharp.DevTools.WebAuthn
Assembly:
CefSharp (in CefSharp.dll) Version: 109.1.110.0 (109.1.110.0)
Syntax public Task<DevToolsMethodResponse> SetResponseOverrideBitsAsync(
string authenticatorId,
bool? isBogusSignature = null,
bool? isBadUV = null,
bool? isBadUP = null
)
public:
Task<DevToolsMethodResponse^>^ SetResponseOverrideBitsAsync(
String^ authenticatorId,
Nullable<bool> isBogusSignature = nullptr,
Nullable<bool> isBadUV = nullptr,
Nullable<bool> isBadUP = nullptr
)
Parameters
- authenticatorId
- Type: SystemString
authenticatorId - isBogusSignature (Optional)
- Type: SystemNullableBoolean
If isBogusSignature is set, overrides the signature in the authenticator response to be zero.Defaults to false. - isBadUV (Optional)
- Type: SystemNullableBoolean
If isBadUV is set, overrides the UV bit in the flags in the authenticator response tobe zero. Defaults to false. - isBadUP (Optional)
- Type: SystemNullableBoolean
If isBadUP is set, overrides the UP bit in the flags in the authenticator response tobe zero. Defaults to false.
Return Value
Type:
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also