Show / Hide Table of Contents

    Class UafAuthenticatorFinder

    Class to find available FIDO specific authenticators on the device

    Inheritance
    Object
    UafAuthenticatorFinder
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: Tizen.Account.FidoClient
    Assembly: Tizen.Account.FidoClient.dll
    Syntax
    public static class UafAuthenticatorFinder

    Methods

    DiscoverAuthenticatorsAsync()

    Retrieves all the available FIDO authenticators supported by this Device.

    Declaration
    public static Task<IEnumerable<AuthenticatorInformation>> DiscoverAuthenticatorsAsync()
    Returns
    Type Description
    Task<IEnumerable<AuthenticatorInformation>>

    Enumerable list of authenticators

    API Version
    3
    Privilege Level
    public
    Privilege

    http://tizen.org/privilege/fido.client

    Feature

    http://tizen.org/feature/fido.uaf

    Examples
        IEnumerable<AuthenticatorInformation> authInfos = await UafAuthenticatorFinder.DiscoverAuthenticatorsAsync();
        foreach (AuthenticatorInformation authInfo in authInfos)
        {
            string aaid = authInfo.Aaid;
            string title = authInfo.Title;
        }
    Exceptions
    Type Condition
    UnauthorizedAccessException

    Thrown when the application does not have privilege to access this method

    NotSupportedException

    FIDO is not supported

    Back to top Copyright © 2016-2018 Samsung
    Generated by DocFX