PROGRAM AREA
NetCore Top questions
Post
New Post
Find by name:
NetCore
First Name
PostDate
What is Startup.cs file in ASP.NET Core?
Startup.cs, it is entry point for application itself. The Startup class configures the request pipeline that handles all requests made to the application.
What ConfigureServices() method does in Startup.cs?
This method is optional. It is the place to add services required by the application. For example, if you wish to use Entity Framework in your application then you can add in this method.
What is Kestral?
Kestrel is the web server that is included by default in ASP.NET Core new project templates. If your application accepts requests only from an internal network, you can use Kestrel by itself.
Page 2 of 7
«
1
2
3
4
5
6
7
»
Full Page