Definition
- Namespace:
- Tizen.Account.FidoClient
- Assembly:
- Tizen.Account.FidoClient.dll
- API Level:
- 3
Contains information about the authenticators registered on the device.
public class AuthenticatorInformation : object
- Inheritance
-
IEnumerable<AuthenticatorInformation> authInfos = await UafAuthenticatorFinder.DiscoverAuthenticatorsAsync();
foreach (AuthenticatorInformation authInfo in authInfos)
{
string aaid = authInfo.Aaid;
string title = authInfo.Title;
}
Properties
View Source
The Authenticator AAID (Authenticator Attestation ID)
Declaration
public string Aaid { get; }
Property Value
API Level: 3
Declaration
public string AssertionScheme { get; }
Property Value
API Level: 3
Declaration
public AuthenticatorAttachmentHint AttachmentHint { get; }
Property Value
API Level: 3
View Source
The available attestation types for this Authenticator.
Declaration
public IEnumerable<AuthenticatorAttestationType> AttestationTypes { get; }
Property Value
API Level: 3
Declaration
public AuthenticationAlgorithm AuthenticationAlgorithm { get; }
Property Value
API Level: 3
Declaration
public string Description { get; }
Property Value
API Level: 3
Declaration
public string Icon { get; }
Property Value
API Level: 3
View Source
Denotes the Authenticator is Second factor only which is supported by U2F standards.
Declaration
public bool IsSecondFactorOnly { get; }
Property Value
API Level: 3
View Source
The key protection method of this Authenticator.
Declaration
public KeyProtectionType KeyProtection { get; }
Property Value
API Level: 3
View Source
The matcher protection method of this Authenticator.
Declaration
public MatcherProtectionType MatcherProtection { get; }
Property Value
API Level: 3
View Source
TcDisplayContentType
The Transaction Confirmation display type of this Authenticator.
Declaration
public string TcDisplayContentType { get; }
Property Value
API Level: 3
View Source
The Transaction Confirmation display type of this Authenticator.
Declaration
public TransactionConfirmationDisplayType TcDisplayType { get; }
Property Value
API Level: 3
Declaration
public string Title { get; }
Property Value
API Level: 3
View Source
The user verification method of this Authenticator
Declaration
public UserVerificationMethod UserVerification { get; }
Property Value
API Level: 3
Extension Methods