.Net Authentication Flashcards
Does .net contain built-in multitenancy support?
No. But there is a recommendation from Microsoft to use Orchard Core or ABP Framework.
What does ChallangeResult action result do?
In ControllerBase there are banch of methods that are called Challange and return ChallangeResult.
When you return ChallangeResult HttpContext.ChallangeAsync is called under the hood. You can provide schema to ask challange with particular schema and other schema specific options.
What does SignInResult action result do?
In ControllerBase there are banch of methods that are called SignIn and return SignInResult.
When you return SignInResult HttpContext.SignInAsync is called under the hood . You can provide schema to ask sign in with particular schema and other schema specific options.