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:
Errorwill contain information as to the cause of the authentication failureDeclaration
Swift
case failed(error: Error) 
- 
                  
                  
EquatableconformanceDeclaration
Swift
public static func == (lhs: AuthenticationHandler.AuthenticateResult, rhs: AuthenticationHandler.AuthenticateResult) -> Bool 
            View on GitHub
          
      AuthenticateResult Enumeration Reference