Loading

ASP.NET Core

What is ASP.NET Core Main Method?. The Complete ASP.NET Core Developer Course 2023 [Videos].

The Main() method is an entry point of console and windows applications on the . NET or . NET Core platform. It is also an entry of ASP.NET Core web applications.

ASP.NET Core Main Method

In this Video, I am going to discuss the ASP.NET Core Main Method in detail. Please read our previous Video where we discussed . As part of this Video, we are going to discuss the following three important pointers in detail.

  1. The significance of the ASP.NET Core Main Method.
  2. Why do we have a Main() method in ASP.NET Core?
  3. What happens behind the scenes when you run a .NET core application?

In order to understand the Main method of ASP.NET Core Web application, lets first create an Empty ASP.NET Core Web application.

Creating Empty ASP.NET Core Web Application

To create a new Empty ASP.NET Core Web Application, Open Visual Studio 2019, and then click on the Create a new project box as shown in the below image.

Creating Empty ASP.NET Core Web Application

Once you click on the Create a new project box, it will open the Create a new project window. From this window select the ASP.NET Core Web Application template and click on the Next button as shown in the below image.

ASP.NET Core Web Application template

Once you click on the Next button, it will open the following Configure Your New Project window. Here, you need to give an appropriate name for your project, set the location where you want to create this project, the solution name for the ASP.NET Core Web application. In this example, we will give the name “FirstCoreWebApplication” and click on the Create button as shown in the image below.

Configure Your New Project

Once you click on the create button, it will open the Create a new ASP.NET Core Web Application window. Select the Empty Project template and uncheck all the checkboxes from the Advanced section and finally click on the Create button as shown in the below image.

Create a new ASP.NET Core Web Application

Once you click on the Create button, it will take some time and will create the Empty ASP.NET Core Web Application with the following file and folder structure.

Empty ASP.NET Core Web Application

As you can see from the above image, we have a class file with the name Program.cs. The Program.cs class file of our ASP.NET Core Web Application contains the following code.

ASP.NET Core Main Method

From the above image, you can see that the Program class contains a public static void Main() method. As we already know, when we create a console application in .net then by default the .NET Framework creates a class (i.e. Program class) with the Main Method. We also know that the Main method is the entry point for that console application execution.

Now the question is, here we are not creating a console application, here we create an ASP.NET Core Web Application. Then why do we have a Main() method in the ASP.NET Core Web Application?

Why do we have a Main() method in ASP.NET Core?

The most important point that you need to keep in mind is, the ASP.NET Core Web Application initially starts as a Console Application and the Main() method is the entry point to the application. So, when we execute the ASP.NET Core Web application, first it looks for the Main() method and this is the method from where the execution starts. The Main() method then configures ASP.NET Core and starts it. At this point, the application becomes an ASP.NET Core web application.

If you further look at the body of the Main() method, then you will find that it makes a call to the CreateHostBuilder() method by passing the command line arguments args as an argument as shown in the below image.

Main Method in ASP.NET Core


As shown in the below image, the CreateHostBuilder() method returns an object that implements the IHostBuilder interface. The Host is a static class that can be used for creating an instance of IHostBuilder with pre-configured defaults. The CreateDefaultBuilder() method creates a new instance of the HostBuilder with pre-configured defaults. Internally, it configures Kestrel (Internal Web Server for ASP.NET Core), IISIntegration, and other configurations.

Main Method in ASP.NET Core Web Application

Within the Main() method, on this IHostBuilder object, the Build() method is called which actually builds a web host. Then it hosts our asp.net core web application within that Web Host. Finally, on the web host, it called the Run()method, which will actually run the web application and it starts listening to the incoming HTTP requests.

The CreateHostBuilder() method calls the static CreateDefaultBuilder() method  on the Host class. The CreateDefaultBuilder() method creates a web host with the default configurations. Behind the scene, to create a host, the CreateDefaultBuilder() method does several things. In the next Video, we will discuss the in detail. For now, just understand that the CreateDefaultBuilder() method sets up a web host with default configurations.

Startup Class

While setting up the host, the Startup class is also configured using the UseStartup() extension method of the IHostBuilderclass. The Startup class has two methods as shown in the below image.

ASP.NET Core Web Application Main Method

The ConfigureServices()method of the Startup class configures the services which are required by the application. The Configure() method of the Startup class sets up the pipeline of the applications request processing. In a later Video, we will discuss these two methods in detail.  

See All

Comments (230 Comments)

Submit Your Comment

See All Posts

Related Posts

ASP.NET Core / Blog

What is ASP.NET Core?

ASP.NET Core is the new version of the ASP.NET web framework mainly targeted to run on .NET Core platform.
27-jan-2022 /16 /230

ASP.NET Core / Blog

What is ASP.NET Core Framework?

ASP.NET Core is a cross-platform, high-performance, open-source framework for building modern, cloud-enabled, Internet-connected apps. With ASP.NET Core, you can: Build web apps and services, Internet of Things (IoT) apps, and mobile backends. Use your favorite development tools on Windows, macOS, and Linux.
27-jan-2022 /16 /230

ASP.NET Core / Blog

How to Setup ASP.NET Core Environment ?

ASP.NET Core is a cross-platform, high-performance, open-source framework for building modern, cloud-enabled, Internet-connected apps. With ASP.NET Core, you can: Build web apps and services, Internet of Things (IoT) apps, and mobile backends. Use your favorite development tools on Windows, macOS, and Linux.
27-jan-2022 /16 /230