Unity allows developers to wire up Interceptors to be injected at the class or method level. This gives the developer the ability to introduce logic that is invoked anytime a method on the configured class/method is called. This magic is possible when Unity is used as an Object Factory, where it ...
3
votes
2answers
831 views
Unity: Register two interfaces as one singleton with interception
I have a class that implements two interfaces, and I want to apply interception to the class's methods.
I'm following the advice in Unity Register two interfaces as one singleton, but I'm surprised ...
3
votes
2answers
81 views
Transparent authorization reliability
I need a gear for custom authorization in business logic classes. It has to be permissions based system, but I can not decide how to apply authorization rules to methods.
My first thought was to ...