Candor.Web.Mvc.MvcTagHtmlHelperExtension.BeginActionLink C# (CSharp) Method

BeginActionLink() public static method

Begins a new action link. For use in a using statement, allowing other code inside the tag.
public static BeginActionLink ( this htmlHelper, System.Web.Mvc.ActionResult result, object>.IDictionary htmlAttributes ) : MvcTag
htmlHelper this The class being extended with this method.
result System.Web.Mvc.ActionResult An IT4MVCActionResult from a T4 MVC action method used to help build urls.
htmlAttributes object>.IDictionary A dictionary with name and value pairs.
return MvcTag
        public static MvcTag BeginActionLink(this HtmlHelper htmlHelper, ActionResult result, IDictionary<string, object> htmlAttributes)
        {
            var callInfo = result.GetT4MVCResult();
            return htmlHelper.BeginActionLink(callInfo.Action, callInfo.Controller, callInfo.RouteValueDictionary, htmlAttributes);
        }

Same methods

MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, System.Web.Mvc.ActionResult result, object htmlAttributes ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, RouteValueDictionary routeValues ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, RouteValueDictionary routeValues, object>.IDictionary htmlAttributes ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, object routeValues ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, object routeValues, object htmlAttributes ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, string controllerName ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, string controllerName, RouteValueDictionary routeValues, object>.IDictionary htmlAttributes ) : MvcTag
MvcTagHtmlHelperExtension::BeginActionLink ( this htmlHelper, string actionName, string controllerName, object routeValues, object htmlAttributes ) : MvcTag
MvcTagHtmlHelperExtension