NRefactory icon indicating copy to clipboard operation
NRefactory copied to clipboard

How to get controllers and actions attributes without using reflection

Open weedkiller opened this issue 9 years ago • 0 comments

hello, how can I get all controller/action filters and attributes without using reflection.

for e.g. I want to parse and get similar results from NRefactory

public void OnActionExecuting(ActionExecutingContext c) 
     // how can I do something similar in Nrefactory
     {
       var controllerActionDes = c.ActionDescriptor as ControllerActionDescriptor;
       if (controllerActionDescriptor != null)
        {
        var actionAttributes = controllerActionDes .MethodInfo...
        }
     }

weedkiller avatar Oct 22 '16 16:10 weedkiller