2 overrides of GetPathByAddress
Microsoft.AspNetCore.Http.Results.Tests (1)
TestLinkGenerator.cs (1)
18public override string GetPathByAddress<TAddress>(TAddress address, RouteValueDictionary values, PathString pathBase = default, FragmentString fragment = default, LinkOptions options = null)
Microsoft.AspNetCore.Routing (1)
DefaultLinkGenerator.cs (1)
96public override string? GetPathByAddress<TAddress>(
6 references to GetPathByAddress
Microsoft.AspNetCore.Mvc.Core (2)
Routing\ControllerLinkGeneratorExtensions.cs (1)
93return generator.GetPathByAddress<RouteValuesAddress>(address, address.ExplicitValues, pathBase, fragment, options);
Routing\PageLinkGeneratorExtensions.cs (1)
95return generator.GetPathByAddress(address, address.ExplicitValues, pathBase, fragment, options);
Microsoft.AspNetCore.Routing (4)
LinkGeneratorEndpointNameAddressExtensions.cs (2)
120return generator.GetPathByAddress<string>(endpointName, new RouteValueDictionary(values), pathBase, fragment, options); 148return generator.GetPathByAddress<string>(endpointName, values ?? new(), pathBase, fragment, options);
LinkGeneratorRouteValuesAddressExtensions.cs (2)
120return generator.GetPathByAddress<RouteValuesAddress>(address, address.ExplicitValues, pathBase, fragment, options); 148return generator.GetPathByAddress<RouteValuesAddress>(address, address.ExplicitValues, pathBase, fragment, options);