我正在编写自己的视图引擎。
public class MyViewEngine : RazorViewEngine
{
public override ViewEngineResult FindView(ControllerContext controllerContext, string viewName, string masterName, bool useCache)
{
// Here, how do I get attributes defined on top of the Action ?
}
}
上面的 SO 问题有如何获取在控制器之上定义的属性。但我需要在 Action 上定义属性。