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 MyActi开发者_运维问答on()
{
}
protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
//here i want to read integer passed to action using Attribute
}
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();
}
}
精彩评论