RegisterStrongAuthChallengeDelegate
@objc
public protocol RegisterStrongAuthChallengeDelegate
Undocumented
-
Notifies the delegate that the operation resulted in an error.
Declaration
Swift
@MainActor func onRegisterStrongAuthChallengeError(error: RegisterStrongAuthChallengeError, newState: RegisterStrongAuthState?)
Parameters
error
An error object indicating why the operation failed.
newState
An object representing the new state of the flow with follow on methods.
-
Notifies the delegate that a verification is required from the user to continue.
Note
If a flow requires this optional method and it is not implemented, thenonSignInRegisterStrongAuthChallengeError(error::newState:)
will be called.Declaration
Swift
@MainActor @objc optional func onRegisterStrongAuthVerificationRequired(result: MSALNativeAuthRegisterStrongAuthVerificationRequiredResult)
-
Notifies the delegate that the sign in operation completed successfully.
Note
If a flow requires this optional method and it is not implemented, thenonSignInRegisterStrongAuthChallengeError(error:newState:)
will be called.Declaration
Swift
@MainActor @objc optional func onSignInCompleted(result: MSALNativeAuthUserAccountResult)
Parameters
result
An object representing the signed in user account.