RenderAction() public static method

public static RenderAction ( this htmlHelper, System.Web.Mvc.ActionResult result ) : void
htmlHelper this
result System.Web.Mvc.ActionResult
return void
Example #1
0
 public static void RenderAction <TActionResult>(this HtmlHelper htmlHelper, Task <TActionResult> taskResult) where TActionResult : ActionResult
 {
     T4Extensions.RenderAction(htmlHelper, taskResult.Result);
 }