public static MvcHtmlString ActionLinkAuth(this HtmlHelper htmlHelper, string linkText, string actionName, RouteValueDictionary routeValues, IDictionary <string, object> htmlAttributes, bool showActionLinkAsDisabled = false)
 {
     return(htmlHelper.ActionLinkAuth(linkText, actionName, null, routeValues, htmlAttributes, showActionLinkAsDisabled));
 }
 public static MvcHtmlString ActionLinkAuth(this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName, object routeValues, object htmlAttributes, bool showActionLinkAsDisabled = false)
 {
     return(htmlHelper.ActionLinkAuth(linkText, actionName, controllerName, new RouteValueDictionary(routeValues), new RouteValueDictionary(htmlAttributes), showActionLinkAsDisabled));
 }
 public static MvcHtmlString ActionLinkAuth(this HtmlHelper htmlHelper, string linkText, string actionName, bool showActionLinkAsDisabled = false)
 {
     return(htmlHelper.ActionLinkAuth(linkText, actionName, null, new RouteValueDictionary(), new RouteValueDictionary(), showActionLinkAsDisabled));
 }