public static MvcHtmlString ThemeActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName, string protocol, string hostName, string fragment, object routeValues, object htmlAttributes)
 {
     return(htmlHelper.ThemeActionLink(linkText, actionName, controllerName, protocol, hostName, fragment, TypeHelper.ObjectToDictionary(routeValues), HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes)));
 }
 public static MvcHtmlString ThemeActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, RouteValueDictionary routeValues, IDictionary <string, object> htmlAttributes)
 {
     return(htmlHelper.ThemeActionLink(linkText, actionName, null, routeValues, htmlAttributes));
 }
 public static MvcHtmlString ThemeActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, object routeValues, object htmlAttributes)
 {
     return(htmlHelper.ThemeActionLink(linkText, actionName, null, TypeHelper.ObjectToDictionary(routeValues), HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes)));
 }
 public static MvcHtmlString ThemeActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, RouteValueDictionary routeValues)
 {
     return(htmlHelper.ThemeActionLink(linkText, actionName, null, routeValues, new RouteValueDictionary()));
 }
 public static MvcHtmlString ThemeActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName)
 {
     return(htmlHelper.ThemeActionLink(linkText, actionName, controllerName, new RouteValueDictionary(), new RouteValueDictionary()));
 }
 public static MvcHtmlString ThemeActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, object routeValues)
 {
     return(htmlHelper.ThemeActionLink(linkText, actionName, null, TypeHelper.ObjectToDictionary(routeValues), new RouteValueDictionary()));
 }