You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 20, 2018. It is now read-only.
I have to implement a "PinSignInAsync" method on my SignInManager. This will basically be (almost) exactly like the PasswordSignInAsync" method, but will be calling a new "UserManager.CheckPinAsync" method and does not have to deal with TwoFactor code.
To implement this I looked at the existing password method, and there are 4 private methods that it uses. If these were protected, then I could use them in my own derived class so code is reused and not duplicated.