Developing ASP.NET MVC Web Applications — Question 77

You are developing an application that uses ASP.NET Core Identity for authorization. The application must use an existing Microsoft Azure Table Storage instance to store user information. You create a custom UserStore class.
You need to register the class as a dependency.
Which two interfaces should you implement? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

Answer options

Correct answer: B, D

Explanation

The correct answers are B and D. Implementing IUserLoginStore allows you to manage user login information, while IUserStore provides the foundational methods for user management. The other options represent additional functionalities that are not required for the basic user storage implementation in this context.