- Modern Web Development with ASP.NET Core 3
- Ricardo Peres
- 210字
- 2021-06-18 18:35:55
Configuration
This chapter covers the configuration of an ASP.NET Core application. Every application needs configuration in one form or another because it makes it much easier to change the underlying behavior should anything happen—think about connection strings, credentials, Internet Protocol (IP) addresses, or any other kind of data that can change over time and is therefore not appropriate to be hardcoded.
Configuration can be done in many ways, some of which don't even require redeploying your application, which is a huge benefit. Luckily, .NET Core was conceived with this in mind and is also very extensible, so it can cover most scenarios, basic and advanced. It also plays nicely with other aspects, such as security and dependency injection.
Also, a very typical configuration just features switching or toggling: something is either enabled or not. .NET Core 3 introduced a new feature toggling library that is outside the main configuration framework, but it will be covered here.
After reading this chapter, you should be able to understand the following:
- How the configuration works on the .NET Core framework
- Which configuration sources we have available
- How to extend it to be more helpful and match your necessities
- Runtime host configuration
- The new feature toggle mechanism introduced in .NET Core 3
- Kali Linux Web Penetration Testing Cookbook
- Rust編程:入門、實戰與進階
- PostgreSQL for Data Architects
- Arduino by Example
- 程序員面試算法寶典
- SQL基礎教程(視頻教學版)
- C++ 從入門到項目實踐(超值版)
- JavaScript:Moving to ES2015
- Java Web開發詳解
- Linux Shell核心編程指南
- Vue.js 2 Web Development Projects
- 微前端設計與實現
- 視窗軟件設計和開發自動化:可視化D++語言
- Python 3.8編程快速入門
- Neo4j High Performance