コード例 #1
0
 public static MvcHtmlString ModularAction <TController>(this HtmlHelper helper, Expression <Func <TController, object> > expression, object arguments) where TController : ControllerBase
 {
     return(ModularAction <TController>(helper, expression, RouteHelpers.ToRouteViewDictionary(arguments)));
 }
コード例 #2
0
 public static MvcHtmlString ModularAction(this HtmlHelper helper, string actionName, string controllerName, string areaName, string moduleName, object arguments)
 {
     return(ModularAction(helper, actionName, controllerName, areaName, moduleName, RouteHelpers.ToRouteViewDictionary(arguments)));
 }
コード例 #3
0
 public static void ModularRenderAction(this HtmlHelper helper, string actionName, string controllerName, string areaName, string moduleName, object arguments)
 {
     ModularRenderAction(helper, actionName, controllerName, areaName, moduleName, RouteHelpers.ToRouteViewDictionary(arguments));
 }
コード例 #4
0
 public static void ModularRenderAction <TController>(this HtmlHelper helper, Expression <Action <TController> > expression, object arguments) where TController : ControllerBase
 {
     ModularRenderAction <TController>(helper, expression, RouteHelpers.ToRouteViewDictionary(arguments));
 }
コード例 #5
0
 public static void ModularRenderAction(this HtmlHelper helper, string actionName, object arguments)
 {
     ModularRenderAction(helper, actionName, RouteHelpers.ToRouteViewDictionary(arguments));
 }