Ask Your Question
3

Is it not possible for the Component to log in using the signInManager.PasswordSignInAsync method from a Blazor component?

asked 2022-05-01 11:00:00 +0000

scrum gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-04-16 21:00:00 +0000

qstack gravatar image

It is possible for a Blazor component to call the signInManager.PasswordSignInAsync method. However, it is not recommended to call the method directly from a component as it breaks the separation of concerns principle. The recommended way is to handle user authentication in a service or controller and have the component use the service or controller to authenticate the user. This helps to maintain the abstraction of the authentication logic in a separate layer of the application.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-05-01 11:00:00 +0000

Seen: 12 times

Last updated: Apr 16 '22