To manage application secrets without storing them in the source code, ASP.NET Core introduced the _________ manager.
- Secret
- Configuration
- Identity
- Credential
To manage application secrets without storing them in the source code, ASP.NET Core introduced the Configuration manager. This manager allows developers to store sensitive information like connection strings, API keys, and passwords outside of the codebase, typically in environment variables or configuration files. It enhances security and facilitates configuration management.
Loading...
Related Quiz
- While learning about ASP.NET Core, you're advised to install an IDE that offers robust debugging, profiling, and integrated testing. Which IDE fits this description?
- When defining an attribute route, which of the following attributes would you use to specify a route for an action method?
- The _______ directive in _ViewImports.cshtml is used to include a namespace across multiple Razor views.
- A _________ in a DbContext represents a collection of entities that can be queried from the database.
- You're trying to create a basic form in a Razor view to capture user feedback. Which tag helper would you use to create a textbox for users to type in their comments?