AuthenticationProvider

public protocol AuthenticationProvider

Protocol encapsulating properties and methods required to be implemented by all authentication providers.

  • Creates and returns authentication information.

    Declaration

    Swift

    func getAuthenticationInfo() async throws -> AuthenticationInfo

    Return Value

    Authentication info.

  • Resets any cached authentication information.

    Declaration

    Swift

    func reset()