"
 
 
 
ASP.NET (snapshot 2017) Microsoft documentation and samples

ASP.NET Core fundamentals

An ASP.NET Core application is a console app that creates a web server in its Main method:

ASP.NET Core 2.x

[!code-csharpMain]

   1:  using Microsoft.AspNetCore;
   2:  using Microsoft.AspNetCore.Hosting;
   3:   
   4:  namespace aspnetcoreapp
   5:  {
   6:      public class Program
   7:      {
   8:          public static void Main(string[] args)
   9:          {
  10:              BuildWebHost(args).Run();
  11:          }
  12:   
  13:          public static IWebHost BuildWebHost(string[] args) =>
  14:              WebHost.CreateDefaultBuilder(args)
  15:                  .UseStartup<Startup>()
  16:                  .Build();
  17:      }
  18:  }

The Main method invokes WebHost.CreateDefaultBuilder, which follows the builder pattern to create a web application host. The builder has methods that define the web server (for example, UseKestrel) and the startup class (UseStartup). In the preceding example, the (xref:)Kestrel web server is automatically allocated. ASP.NET Core’s web host attempts to run on IIS, if available. Other web servers, such as (xref:)HTTP.sys, can be used by invoking the appropriate extension method. UseStartup is explained further in the next section.

IWebHostBuilder, the return type of the WebHost.CreateDefaultBuilder invocation, provides many optional methods. Some of these methods include UseHttpSys for hosting the app in HTTP.sys and UseContentRoot for specifying the root content directory. The Build and Run methods build the IWebHost object that hosts the app and begins listening for HTTP requests.

ASP.NET Core 1.x

[!code-csharpMain]

   1:  using System;
   2:  using Microsoft.AspNetCore.Hosting;
   3:   
   4:  namespace aspnetcoreapp
   5:  {
   6:      public class Program
   7:      {
   8:          public static void Main(string[] args)
   9:          {
  10:              var host = new WebHostBuilder()
  11:                  .UseKestrel()
  12:                  .UseStartup<Startup>()
  13:                  .Build();
  14:   
  15:              host.Run();
  16:          }
  17:      }
  18:  }

The Main method uses WebHostBuilder, which follows the builder pattern to create a web application host. The builder has methods that define the web server (for example, UseKestrel) and the startup class (UseStartup). In the preceding example, the (xref:)Kestrel web server is used. Other web servers, such as (xref:)WebListener, can be used by invoking the appropriate extension method. UseStartup is explained further in the next section.

WebHostBuilder provides many optional methods, including UseIISIntegration for hosting in IIS and IIS Express and UseContentRoot for specifying the root content directory. The Build and Run methods build the IWebHost object that hosts the app and begins listening for HTTP requests.


Startup

The UseStartup method on WebHostBuilder specifies the Startup class for your app:

ASP.NET Core 2.x

[!code-csharpMain]

   1:  using Microsoft.AspNetCore;
   2:  using Microsoft.AspNetCore.Hosting;
   3:   
   4:  namespace aspnetcoreapp
   5:  {
   6:      public class Program
   7:      {
   8:          public static void Main(string[] args)
   9:          {
  10:              BuildWebHost(args).Run();
  11:          }
  12:   
  13:          public static IWebHost BuildWebHost(string[] args) =>
  14:              WebHost.CreateDefaultBuilder(args)
  15:                  .UseStartup<Startup>()
  16:                  .Build();
  17:      }
  18:  }

ASP.NET Core 1.x

[!code-csharpMain]

   1:  using System;
   2:  using Microsoft.AspNetCore.Hosting;
   3:   
   4:  namespace aspnetcoreapp
   5:  {
   6:      public class Program
   7:      {
   8:          public static void Main(string[] args)
   9:          {
  10:              var host = new WebHostBuilder()
  11:                  .UseKestrel()
  12:                  .UseStartup<Startup>()
  13:                  .Build();
  14:   
  15:              host.Run();
  16:          }
  17:      }
  18:  }


The Startup class is where you define the request handling pipeline and where any services needed by the app are configured. The Startup class must be public and contain the following methods:

ConfigureServices defines the Services used by your app (for example, ASP.NET Core MVC, Entity Framework Core, Identity). Configure defines the (xref:)middleware for the request pipeline.

For more information, see (xref:)Application startup.

Content root

The content root is the base path to any content used by the app, such as views, (xref:)Razor Pages, and static assets. By default, the content root is the same as application base path for the executable hosting the app.

Web root

The web root of an app is the directory in the project containing public, static resources, such as CSS, JavaScript, and image files.

Dependency Injection (Services)

A service is a component that’s intended for common consumption in an app. Services are made available through (xref:)dependency injection (DI). ASP.NET Core includes a native Inversion of Control (IoC) container that supports (xref:)constructor injection by default. You can replace the default native container if you wish. In addition to its loose coupling benefit, DI makes services available throughout your app (for example, (xref:)logging).

For more information, see (xref:)Dependency injection.

Middleware

In ASP.NET Core, you compose your request pipeline using (xref:)middleware. ASP.NET Core middleware performs asynchronous logic on an HttpContext and then either invokes the next middleware in the sequence or terminates the request directly. A middleware component called “XYZ” is added by invoking an UseXYZ extension method in the Configure method.

ASP.NET Core comes with a rich set of built-in middleware:

OWIN-based middleware is available for ASP.NET Core apps, and you can write your own custom middleware.

For more information, see (xref:)Middleware and (xref:)Open Web Interface for .NET (OWIN).

Environments

Environments, such as “Development” and “Production”, are a first-class notion in ASP.NET Core and can be set using environment variables.

For more information, see (xref:)Working with Multiple Environments.

Configuration

ASP.NET Core uses a configuration model based on name-value pairs. The configuration model isn’t based on System.Configuration or web.config. Configuration obtains settings from an ordered set of configuration providers. The built-in configuration providers support a variety of file formats (XML, JSON, INI) and environment variables to enable environment-based configuration. You can also write your own custom configuration providers.

For more information, see (xref:)Configuration.

Logging

ASP.NET Core supports a logging API that works with a variety of logging providers. Built-in providers support sending logs to one or more destinations. Third-party logging frameworks can be used.

(xref:)Logging

Error handling

ASP.NET Core has built-in features for handling errors in apps, including a developer exception page, custom error pages, static status code pages, and startup exception handling.

For more information, see (xref:)Error Handling.

Routing

ASP.NET Core offers features for routing of app requests to route handlers.

For more information, see (xref:)Routing.

File providers

ASP.NET Core abstracts file system access through the use of File Providers, which offers a common interface for working with files across platforms.

For more information, see (xref:)File Providers.

Static files

Static files middleware serves static files, such as HTML, CSS, image, and JavaScript.

For more information, see (xref:)Working with static files.

Hosting

ASP.NET Core apps configure and launch a host, which is responsible for app startup and lifetime management.

For more information, see (xref:)Hosting.

Session and application state

Session state is a feature in ASP.NET Core that you can use to save and store user data while the user browses your web app.

For more information, see (xref:)Session and application state.

Servers

The ASP.NET Core hosting model doesn’t directly listen for requests. The hosting model relies on an HTTP server implementation to forward the request to the app. The forwarded request is wrapped as a set of feature objects that can be accessed through interfaces. ASP.NET Core includes a managed, cross-platform web server, called (xref:)Kestrel. Kestrel is often run behind a production web server, such as IIS or nginx. Kestrel can be run as an edge server.

For more information, see (xref:)Servers and the following topics:

Globalization and localization

Creating a multilingual website with ASP.NET Core allows your site to reach a wider audience. ASP.NET Core provides services and middleware for localizing into different languages and cultures.

For more information, see (xref:)Globalization and localization.

Request features

Web server implementation details related to HTTP requests and responses are defined in interfaces. These interfaces are used by server implementations and middleware to create and modify the app’s hosting pipeline.

For more information, see (xref:)Request Features.

Open Web Interface for .NET (OWIN)

ASP.NET Core supports the Open Web Interface for .NET (OWIN). OWIN allows web apps to be decoupled from web servers.

For more information, see (xref:)Open Web Interface for .NET (OWIN).

WebSockets

WebSocket is a protocol that enables two-way persistent communication channels over TCP connections. It’s used for apps such as chat, stock tickers, games, and anywhere you desire real-time functionality in a web app. ASP.NET Core supports web socket features.

For more information, see (xref:)WebSockets.

Microsoft.AspNetCore.All metapackage

The Microsoft.AspNetCore.All metapackage for ASP.NET Core includes:

For more information, see (xref:)Microsoft.AspNetCore.All metapackage.

.NET Core vs. .NET Framework runtime

An ASP.NET Core app can target the .NET Core or .NET Framework runtime.

For more information, see Choosing between .NET Core and .NET Framework.

Choose between ASP.NET Core and ASP.NET

For more information on choosing between ASP.NET Core and ASP.NET, see (xref:)Choose between ASP.NET Core and ASP.NET.





Comments ( )
<00>  <01>  <02>  <03>  <04>  <05>  <06>  <07>  <08>  <09>  <10>  <11>  <12>  <13>  <14>  <15>  <16>  <17>  <18>  <19>  <20>  <21>  <22>  <23
Link to this page: //www.vb-net.com/AspNet-DocAndSamples-2017/aspnetcore/fundamentals/Index.htm
<SITEMAP>  <MVC>  <ASP>  <NET>  <DATA>  <KIOSK>  <FLEX>  <SQL>  <NOTES>  <LINUX>  <MONO>  <FREEWARE>  <DOCS>  <ENG>  <CHAT ME>  <ABOUT ME>  < THANKS ME>