Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reading attribute in OnAction Executing in asp.net mvc3

I am having an action and attribute as following, i have over-ridden OnActionExecuting and want to read attribute in that method

[MyAttribute(integer)]
public ActionResult MyAction()
{
}


protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
    //here i want to read integer passed to action using Attribute
}
like image 786
Rusi Nova Avatar asked Aug 20 '11 19:08

Rusi Nova


1 Answers

Try it:

Controller

protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
  foreach (var filter in filterContext.ActionDescriptor.GetCustomAttributes(typeof (MyAttribute), false).Cast<MyAttribute>())
  {
    var desiredValue = filter.Parameter;
  }

  base.OnActionExecuting(filterContext);
}

Filter

public class MyAttribute : FilterAttribute, IActionFilter
{
  private readonly int _parameter;

  public MyAttribute(int parameter)
  {
    _parameter = parameter;
  }

  public int Parameter { get { return _parameter; } }

  public void OnActionExecuted(ActionExecutedContext filterContext)
  {
    //throw new NotImplementedException();
  }

  public void OnActionExecuting(ActionExecutingContext filterContext)
  {
    //throw new NotImplementedException();
  }
}
like image 99
vladimir Avatar answered Sep 22 '22 01:09

vladimir