MSALNativeAuthSignInAfterResetPasswordRequiredDelegate
@objc
public protocol MSALNativeAuthSignInAfterResetPasswordRequiredDelegate : MSALNativeAuthFlowDelegate
Per-state delegate for the MSALNativeAuthSignInAfterResetPasswordState step of a Native Auth V2 flow.
Conform to this protocol (in addition to the terminal callbacks inherited from
MSALNativeAuthFlowDelegate) to handle this state. Conforming is opt-in per state, but the
callback is required once you conform.
Warning
This API is experimental. It may be changed in the future without notice. Do not use in production applications.-
The self-service password reset completed and the account can now be signed in. Continue with
signIn(parameters:delegate:).Note
If the app’s delegate does not conform to this protocol, thenonFlowError(error:scenario:)is called with error typenotImplemented.Declaration
Swift
@MainActor func onSignInAfterResetPasswordRequired(state: MSALNativeAuthSignInAfterResetPasswordState, scenario: MSALNativeAuthFlowScenario)Parameters
stateThe sign-in-after-reset-password state.
scenarioThe flow that produced this callback.
View on GitHub