I’m not sure if this is possible but I want to see objects created by my ModelBinders other than having them passed as parameters to my Action methods.
I.e. I want to register a FooBinder and a BarBinder, then look at a Foo in the following method
public void MyAction(Bar bar)
or even ideally in an ActionFilter.
Is this possible?
To access this:
Use this in your filter:
EDIT:
For ActionMethodSelectorAttribute this might help:
Check out this blog post by K. Scott Allen.
No warranty – haven’t used this by myself – just found through watch window. 🙂