.Net Authentication Flashcards

1
Q

Does .net contain built-in multitenancy support?

A

No. But there is a recommendation from Microsoft to use Orchard Core or ABP Framework.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does ChallangeResult action result do?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does SignInResult action result do?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly