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 has been 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.
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.
I would also suggest reviewing the other private and internal methods/classes to see if the would benefit from being protected/protected internal.
The text was updated successfully, but these errors were encountered: