Class UafAuthenticatorFinder
Definition
- Namespace:
- Tizen.Account.Fido
Client
- Assembly:
- Tizen.Account.FidoClient.dll
Class to find available FIDO specific authenticators on the device
public static class UafAuthenticatorFinder
- Inheritance
-
objectUaf
Authenticator Finder
Methods
View SourceDiscoverAuthenticatorsAsync()
Retrieves all the available FIDO authenticators supported by this Device.
Declaration
public static Task<IEnumerable<AuthenticatorInformation>> DiscoverAuthenticatorsAsync()
Returns
Type | Description |
---|---|
System. |
Enumerable list of authenticators |
Examples
IEnumerable<AuthenticatorInformation> authInfos = await UafAuthenticatorFinder.DiscoverAuthenticatorsAsync();
foreach (AuthenticatorInformation authInfo in authInfos)
{
string aaid = authInfo.Aaid;
string title = authInfo.Title;
}
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the application does not have privilege to access this method |
System. |
FIDO is not supported |