Let's say I've got an ActionFilterAttribute on an Action method in a Controller. This Action Filter exposes a couple public members (properties, in this case).
Is there any way from within the body of my Action method that I can access these public properties (read-only needed)?
Attribute properties could be only constant values and must be known at compile time:
so inside the action you already know those values as you have hardcoded them just above the action method signature. To avoid hardcoding magic strings in two different places of you program you could use constants:
and then:
Of course you could always use reflection:
but IMHO that would be a great waste so don't do it :-)