NetCore Top questions

Post

New Post


Find by name:

NetCore First Name PostDate
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.
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 is Static files in ASP.NET Core? Static files are stored within the project's wwwroot directory and Startup.Configure enables static files to be served.