Hernan Marano
Hernan Marano
As per http://msdn.microsoft.com/en-us/library/system.web.mvc.nonactionattribute(v=vs.118).aspx, it would be reasonable to exclude nonaction methods. I think it would suffice to change: ``` internal static bool IsValidActionMethod(this MethodInfo methodInfo, bool allowActionMethodsReturningVoid) { return methodInfo.ReturnType.IsControllerActionReturnType(allowActionMethodsReturningVoid)...
It would be handy to have a way to exclude controllers globally so no policies would be applied to them when using methods such as ForAllControllersInNamespaceContainingType, ForActionsMatching, ForAllControllersInheriting. The syntax...
Is there any way to localize the strings, apart from setting the appropiate options? I mean, it would be handy to have separate .js files for each language, containing the...
It would be great if an extensibility point could be added so route constraints can be instantiated through a dependency injector such as Ninject. In many cases, I need to...
The best bet to styling html emails is to set the style attribute in the corresponding tags. However, most people usually have their style definitions in separate css files. There...