前端之家收集整理的这篇文章主要介绍了
c# – 在asp.net mvc中的自定义属性中执行优先级,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的asp.net mvc(C#)应用程序中有两个
自定义属性.
[CustAttribute1()]
[CustAttribute2()]
当我将这些属性用于我的动作时,首先执行哪些属性
[CustAttribute1()]
[CustAttribute2()]
public ActionResult Index()
{
我可以为我的动作使用多个自定义属性吗?如果是这样,在上述Action中,哪个自定义属性将先执行?
设置
Order属性.
[CustAttribute1(Order=2)]
[CustAttribute2(Order=1)]
public ActionResult Index() {
return View();
}
原文链接:https://www.f2er.com/csharp/97163.html