本文整理匯總了C#中System.Web.Mvc.ActionExecutingContext.GetActionParameterValue方法的典型用法代碼示例。如果您正苦於以下問題:C# ActionExecutingContext.GetActionParameterValue方法的具體用法?C# ActionExecutingContext.GetActionParameterValue怎麽用?C# ActionExecutingContext.GetActionParameterValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Web.Mvc.ActionExecutingContext
的用法示例。
在下文中一共展示了ActionExecutingContext.GetActionParameterValue方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: OnActionExecuting
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
//filterContext.RouteData.DataTokens
//object parameter = filterContext.ActionParameters.GetValue(ParamName);
//if (parameter == null)
//{
// //得到類型
// var desciptor = filterContext.ActionDescriptor as ReflectedActionDescriptor;
// if (desciptor == null)
// {
// return;
// }
// var parameterInfo = desciptor.MethodInfo.GetParameters().FirstOrDefault(o => o.Name.Equals(ParamName, StringComparison.OrdinalIgnoreCase));
//}
object parameter = filterContext.GetActionParameterValue(ParamName);
if (parameter == null || parameter.GetType().IsPrimitive)
{
return;
}
var p = parameter.GetType().GetProperty(PropertyName, Reflection.BindingFlags.IgnoreCase | Reflection.BindingFlags.Instance | Reflection.BindingFlags.Public);
if (p == null)
{
return;
}
string propertyParamName = string.IsNullOrEmpty(PropertyParamName) ? PropertyName : PropertyParamName;
string value = filterContext.HttpContext.Request[propertyParamName];
if (value == null)
{
value = filterContext.RouteData.Values[propertyParamName] as string;
}
if (!string.IsNullOrEmpty(value))
{
try
{
if (Type.IsPrimitive || Type.Equals(typeof(string)) || Type.Equals(typeof(Decimal)))
{
p.SetValue(parameter, Convert.ChangeType(value, Type));
}
else
{
var result = ParameterConvert.Convert(value, this.Type);
p.SetValue(parameter, result);
}
}
catch //(Exception ex)
{
}
}
//base.OnActionExecuting(filterContext);
}