Class AuthenticatorResponse
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
The AuthenticatorResponse interface of the Web Authentication API is the base interface for interfaces that provide a cryptographic root of trust for a key pair. The child interfaces include information from the browser such as the challenge origin and either may be returned from Response.
[Value("AuthenticatorResponse")]
public class AuthenticatorResponse
- Inheritance
-
AuthenticatorResponse
- Derived
- Inherited Members
Remarks
Constructors
AuthenticatorResponse()
public AuthenticatorResponse()
Properties
ClientDataJSON
The clientDataJSON property of the AuthenticatorResponse interface stores a JSON string in an
{{jsxref("ArrayBuffer")}}, representing the client data that was passed to Create(CredentialCreationOptions) or Get(CredentialRequestOptions). This property is only accessed on one of the child objects of AuthenticatorResponse, specifically AuthenticatorAttestationResponse or AuthenticatorAssertionResponse.
[Value("clientDataJSON")]
public ArrayBuffer ClientDataJSON { get; }