What is middleware? Simply, middleware is code that becomes part of a pipeline to handle requests and responses in a web app. In ASP.NET Core, middleware is a big deal! All requests are handled by a pipeline of middleware. If you’ve created an ASP.NET Core app before, you are probably...