For a new e-commerce website, the client needs users to verify their emails before making a purchase. Which feature in ASP.NET Core Identity would assist in this?
- Two-Factor Authentication
- Account Lockout
- Email Confirmation
- Role-based Authorization
The "Email Confirmation" feature in ASP.NET Core Identity allows users to verify their email addresses before gaining full access to the application. This is crucial for scenarios like e-commerce websites, ensuring that users have valid and verified email addresses before making purchases.
Loading...
Related Quiz
- What purpose does the .NET Core CLI serve in ASP.NET Core development?
- You are tasked to catch all unhandled exceptions globally in your ASP.NET Core MVC application. Which approach would be most suitable to achieve this?
- What is the primary purpose of CI/CD in the context of software deployment?
- How does the "Controller" in the MVC design pattern typically receive user input in ASP.NET Core?
- The _______ attribute in ASP.NET Core MVC allows you to specify the route pattern directly on the controller or action method.