Handling claims transformation in an OWIN middleware in .NET MVC part 4
October 19, 2015 Leave a comment
Introduction
In the previous post we turned our claims transformation code into OWIN middleware. We went through the process of creating a component – the ClaimsTransformationComponent – and registering it with OWIN in Startup.cs. We set the current claims principal in our component which is then available within the controllers.
In this post which finishes this series we’ll diverge a little from our main topic and take a look at how we can add dependencies to an OWIN component.