Statistics
The Highest Post







Statistics
Count 20
Avg 21.00
Min 21
Max 21
Asp.Net Core Top questions

Details



Peter Agyekum What is a Host and what’s the importance of Host in ASP.NET Core application? Ans: ASP.NET Core apps require a host in which to execute. The host is responsible for application startup and lifetime management. Other responsibility of host’s includes ensuring the application’s services and the server are available and properly configured. Don’t confuse yourself with a Server. The host is responsible for starting the app and its management, where the server is responsible for accepting HTTP requests. The host is configured to use a particular server; the server is unaware of its host.