Top "Owin-middleware" questions

OWIN Middleware in the IIS integrated pipeline

How and when does Configuration method in OwinStartup class is called/executed?

Before I ask my question I have already gone through the following posts: Can't get the OWIN Startup class to …

c# asp.net-mvc-4 owin owin-middleware
Global exception handling in OWIN middleware

I'm trying to create a unified error handling/reporting in ASP.NET Web API 2.1 Project built on top of OWIN …

asp.net-web-api asp.net-web-api2 owin katana owin-middleware
Rewind request body stream

I am re-implementing a request logger as Owin Middleware which logs the request url and body of all incoming requests. …

asp.net .net asp.net-web-api owin owin-middleware
How can I safely intercept the Response stream in a custom Owin Middleware

I'm trying to write a simple OWIN Middleware, in order to intercept the response stream. What I'm trying to do …

c# stream owin katana owin-middleware
Should I use OwinContext's Environment to hold application specific data per request

I need a way to store a logging object per request. With HttpContext I would add this to the items …

c# asp.net unity-container owin owin-middleware
ASP.NET Core middleware or OWIN middleware?

As I understand it, ASP.NET Core has support for OWIN middleware (via app.UseOwin()) in addition to its own …

asp.net-core owin-middleware