9 references to GetPathByAction
Microsoft.AspNetCore.Mvc.Core.Test (2)
Routing\ControllerLinkGeneratorExtensionsTest.cs (2)
61var path = linkGenerator.GetPathByAction( 119var path = linkGenerator.GetPathByAction(
Mvc.RoutingWebSite (7)
Areas\Admin\LG3Controller.cs (2)
25return _linkGenerator.GetPathByAction(HttpContext, action: nameof(SomeAction)); 36return _linkGenerator.GetPathByAction(
Controllers\LG1Controller.cs (4)
19return _linkGenerator.GetPathByAction(HttpContext, values: QueryToRouteValues(HttpContext.Request.Query)); 24return _linkGenerator.GetPathByAction( 32return _linkGenerator.GetPathByAction( 44return _linkGenerator.GetPathByAction(
Pages\LGAnotherPage.cshtml.cs (1)
20return Content(_linkGenerator.GetPathByAction(HttpContext, action: nameof(LG2Controller.SomeAction), controller: "LG2"));