6
我如何解析列表到我自定義操作篩選器(如輸入參數)?傳遞列表<Enum>參數到ASP.NET MVC3中的自定義操作篩選器
public class CustomFilter : ActionFilterAttribute
{
public List<MyEnumType> InputParameter { get; set; }
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
base.OnActionExecuting(filterContext);
}
}
[CustomFilter(InputParameter = new List<MyEnumType>() { MyEnumType.Type })]
public SomeActionInController()
{
}
我errror錯誤
'InputParameter' is not a valid named attribute argument because it is not a valid attribute parameter type
這項工作很好,但如果我解析名單然後我得到了錯誤,請檢查後期編輯 –
我已經更新了我的答案 – devdigital
感謝,對鏈接... –