AuthenticatorAssertionResponse

Overview

TheĀ AuthenticatorAssertionResponse interface of the Web Authentication APIĀ is returned by CredentialsContainer.get() when a PublicKeyCredential is passed, and provides proof to a service that it has a key pair and that theĀ authentication request is valid and approved.

Location

Properties


authenticatorData

 

property authenticatorData: dynamic read;

 

dynamic authenticatorData { get; }

 

var authenticatorData: dynamic { get{} }

 

dynamic authenticatorData { __get; }

 

ReadOnly Property authenticatorData() As dynamic

signature

 

property signature: array of Byte read;

 

Byte[] signature { get; }

 

var signature: Byte... { get{} }

 

Byte[] signature { __get; }

 

ReadOnly Property signature() As Byte()

userHandle

 

property userHandle: array of Byte read;

 

Byte[] userHandle { get; }

 

var userHandle: Byte... { get{} }

 

Byte[] userHandle { __get; }

 

ReadOnly Property userHandle() As Byte()