WebAuthnClientSetResponseOverrideBitsAsync Method |
Version 130.1.90
Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.
Namespace: CefSharp.DevTools.WebAuthnAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.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 String
- authenticatorId
- isBogusSignature NullableBoolean (Optional)
- If isBogusSignature is set, overrides the signature in the authenticator response to be zero.Defaults to false.
- isBadUV NullableBoolean (Optional)
- If isBadUV is set, overrides the UV bit in the flags in the authenticator response tobe zero. Defaults to false.
- isBadUP NullableBoolean (Optional)
- If isBadUP is set, overrides the UP bit in the flags in the authenticator response tobe zero. Defaults to false.
Return Value
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also