1.1 KiB
1.1 KiB
title | author | description | manager | ms.author | ms.custom | ms.date | ms.prod | ms.technology | ms.topic | uid |
---|---|---|---|---|---|---|---|---|---|---|
Host in ASP.NET Core | guardrex | Learn about the ASP.NET Core Web Host and .NET Generic Host, which are responsible for app startup and lifetime management. | wpickett | riande | mvc | 05/16/2018 | asp.net-core | aspnet | article | fundamentals/host/index |
Host in ASP.NET Core
.NET apps configure and launch a host. The host is responsible for app startup and lifetime management. Two host APIs are available for use:
- Web Host – Suitable for hosting web apps.
- Generic Host (ASP.NET Core 2.1 or later) – Suitable for hosting non-web apps (for example, apps that run background tasks). In a future release, the Generic Host will be suitable for hosting any kind of app, including web apps. The Generic Host will eventually replace the Web Host.
At this time, developers should use the Web Host based on IWebHostBuilder for hosting ASP.NET Core apps.