-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
ASP.NET Core 9 Essentials
By :
Now that we have knowledge about the features and possibilities of middleware, we will work on some capabilities that will bring greater quality to our web applications.
There is no strict standard directory structure or namespace for creating middleware classes. However, it is good practice to organize classes into well-defined namespaces.
For this example, we will default to creating a folder called Middlewares in the root of your application project.
In this section, we will focus on the following middleware:
The project containing the classes mentioned in the preceding list is available in the book repository, the link to which can be found in the Technical requirements section.
Let’s create a new application. Open the terminal, and in a...