Click or drag to resize

WebAuthnClientSetResponseOverrideBitsAsync Method

Version 111.2.70
Resets parameters isBogusSignature, isBadUV, isBadUP to false if they are not present.

Namespace:  CefSharp.DevTools.WebAuthn
Assembly:  CefSharp (in CefSharp.dll) Version: 111.2.70.0 (111.2.70.0)
Syntax
public Task<DevToolsMethodResponse> SetResponseOverrideBitsAsync(
	string authenticatorId,
	bool? isBogusSignature = null,
	bool? isBadUV = null,
	bool? isBadUP = null
)

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: TaskDevToolsMethodResponse
returns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also