I've got an API method where the Id parameter is annotated with CacheType attribute
public Object Get([CacheType(CacheTypes.Venue)]int Id)
{
....
}
Can I read the value of the parameter attribute inside of ActionFilterAttribute
public class CacheOutputAttribute : ActionFilterAttribute
{
public override void OnActionExecuting(HttpActionContext actionContext)
{
//read CacheType value
}
}