Please enable JavaScript.
Coggle requires JavaScript to display documents.
Asp.net Core
Overview - Coggle Diagram
Asp.net Core
Overview
startup class
-
Configure
The app's request handling pipeline is defined, as a series of middleware components.
-
Middleware
Use...
By convention, a middleware component is added to the pipeline by invoking a Use... extension method
Component
Each component performs operations on an HttpContext and either invokes the next middleware in the pipeline or terminates the request.
-
-
-
Environments
Development, Staging, Production
-
-
-
-
-
-
Content Root
Base Path for
-
-
Content files used by the app, such as:
Razor files (.cshtml, .razor)
Configuration files (.json, .xml)
-
The Web root, typically the wwwroot folder.
-