作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
ActionExecutedContext
类中是否有类似ActionExecutingContext 的ActionDescriptor.ActionParameters
属性的东西?
我需要在这个阶段调查操作的参数(OnActionExecuted
)。
最佳答案
你可以像这样获取参数和值:
// Format the parameters based on our requirements:
StringBuilder parameters = new StringBuilder();
foreach (var p in filterContext.ActionDescriptor.GetParameters())
{
if (filterContext.Controller.ValueProvider.GetValue(p.ParameterName) != null)
{
parameters.AppendFormat("\r\n\t{0}\t\t:{1}", p.ParameterName,
filterContext.Controller.ValueProvider.GetValue(p.ParameterName).AttemptedValue);
}
}
关于c# - ActionExecutedContext 中的 ActionDescriptor.ActionParameters,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10428524/
ActionExecutedContext 类中是否有类似ActionExecutingContext 的ActionDescriptor.ActionParameters 属性的东西? 我需要在这个
我的 WebApi 操作方法返回一个 IQueryable,我想通过 Asp.Net WebApi(不是 MVC)中的 ActionFilterAttribute 修改它(应用分页和过滤)。以下线程我
我是一名优秀的程序员,十分优秀!