When configuring ASP.NET Core Identity, the _________ class is used to specify policies like password strength and lockout duration.
- 'PolicySettings'
- 'AuthorizationOptions'
- 'IdentityOptions'
- 'SecurityPolicies'
When configuring ASP.NET Core Identity, the 'IdentityOptions' class is used to specify various settings, including policies like password strength and lockout duration. This class allows fine-grained control over the behavior of Identity.
Loading...
Related Quiz
- Integration tests are designed to test the _________ between different units or components.
- Imagine you have two action methods in your controller: one for handling the creation of products and another for displaying a specific product's details based on its ID. How can you utilize attribute routing to distinguish these two methods?
- Which of the following is a built-in Razor Tag Helper in ASP.NET Core?
- You've deployed an ASP.NET Core application, but users report they're not able to access CSS and images. Which middleware might you have forgotten to configure in Startup.cs?
- The ________ method in the "Startup.cs" file is used to add and configure middleware services to the application's request pipeline.