public static MvcAnchor BeginActionLink(this AjaxHelper helper, string actionName, string controller, AjaxOptions ajaxOptions)
 {
     return(helper.BeginActionLink(actionName, controller, null, ajaxOptions, null));
 }
 public static MvcAnchor BeginActionLink(this AjaxHelper helper, string actionName, object routeValues, AjaxOptions ajaxOptions)
 {
     return(helper.BeginActionLink(actionName, null, new RouteValueDictionary(routeValues), ajaxOptions, null));
 }
 public static MvcAnchor BeginActionLink(this AjaxHelper helper, string actionName, object routeValues, AjaxOptions ajaxOptions, object htmlAttributes)
 {
     return(helper.BeginActionLink(actionName, null, new RouteValueDictionary(routeValues), ajaxOptions, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes)));
 }