Click or drag to resize

WebAuthnClientSetResponseOverrideBitsAsync Method

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

Namespace: CefSharp.DevTools.WebAuthn
Assembly: 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
)

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

TaskDevToolsMethodResponse
returns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also