NetCore Top questions

Post

New Post


Find by name:

NetCore First Name PostDate
What is AspNetCore Middleware? Middleware is software that's assembled into an app pipeline to handle HTTPs requests and responses. Such as Cors
What is AspNetCore EndPoint? Endpoint routing is enables you to provide routing information such as HTTPs to middleware by matching the request (URL) processing pipeline.
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.