SignInAfterSignUpDelegate
@objc
public protocol SignInAfterSignUpDelegate
Protocol that defines the methods of a SignInAfterSignUp delegate
-
Notifies the delegate that the operation resulted in an error.
Declaration
Swift
@MainActor func onSignInAfterSignUpError(error: SignInAfterSignUpError)
Parameters
error
An error object indicating why the operation failed.
-
Notifies the delegate that the sign in operation completed successfully.
Note
If a flow requires this optional method and it is not implemented, thenonSignInAfterSignUpError(error:)
will be called.Declaration
Swift
@MainActor @objc optional func onSignInCompleted(result: MSALNativeAuthUserAccountResult)
Parameters
result
An object representing the signed in user account.