PROGRAM AREA
NetCore Top questions
Post
New Post
Find by name:
NetCore
First Name
PostDate
What is host in AspNetCore?
ASP.NET Core apps configure and launch a host. The host is responsible for app startup and lifetime management. Host configures a server and a request processing pipeline. The host can also set up logging, dependency injection, and configuration.
What does CreateDefaultBuilder in program.cs in Asp.netCore?
It Configures Kestrel server as the web server using the app's hosting configuration providers. CreateDefaultBuilder enables IIS Integration, which configures the app's base address and port. IIS Integration also configures the app to capture startup errors.
What is Kestrel?
Kestrel is an open source, cross platform, light weight and a default webserver used for Asp.Net Core applications. Asp.Net Core applications run Kestrel webserver as in-process server to handle web request.
Page 6 of 7
«
1
2
3
4
5
6
7
»
Full Page