12 references to Action
Microsoft.AspNetCore.Mvc.Core (9)
Infrastructure\RedirectToActionResultExecutor.cs (1)
41var destinationUrl = urlHelper.Action(
UrlHelperExtensions.cs (8)
24return helper.Action( 44return helper.Action(action, controller: null, values: null, protocol: null, host: null, fragment: null); 59return helper.Action(action, controller: null, values: values, protocol: null, host: null, fragment: null); 74return helper.Action(action, controller, values: null, protocol: null, host: null, fragment: null); 90return helper.Action(action, controller, values, protocol: null, host: null, fragment: null); 121return helper.Action(action, controller, values, protocol, host: null, fragment: null); 156return helper.Action(action, controller, values, protocol, host, fragment: null); 537return Action(helper, action, controller, values, protocol, host, fragment);
Microsoft.AspNetCore.Mvc.Core.Test (1)
Routing\UrlHelperTestBase.cs (1)
718var url = urlHelper.Action(
Microsoft.AspNetCore.Mvc.TagHelpers (1)
FormActionTagHelper.cs (1)
259url = urlHelper.Action(Action, Controller, routeValues, protocol: null, host: null, fragment: Fragment);
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
DefaultHtmlGenerator.cs (1)
140var url = urlHelper.Action(actionName, controllerName, routeValues, protocol, hostname, fragment);