How-To Create Katana Middleware
What I love about Katana (OWIN Implementation) is the ability to add functionality through the request pipeline. In this post I’m going to extend my ASP.NET Self Host Web Api application by demonstrating how you can create your own Katana Middleware. What’s OWIN Middleware? OWIN specification defines middleware as: Middleware – Pass through components that form a pipeline between a server and application to inspect, route, or modify request and response messages for a specific purpose. Katana IAppBuilder.Use There are couple different ways you can create your own middleware. The simplest is to call the IAppBuild.Use method in your Startup class. For our example,… Read More »How-To Create Katana Middleware