AuthenticateResult

public enum AuthenticateResult

Result enumeration for the AuthenticationHandler authentication process.

  • Authentication was successful

    Declaration

    Swift

    case succeeded
  • Authentication was denied

    Declaration

    Swift

    case denied
  • Authentication was canceled

    Declaration

    Swift

    case canceled
  • authentication failed due to some error or condition

    error: Error will contain information as to the cause of the authentication failure

    Declaration

    Swift

    case failed(error: Error)