zijianhuang / webapiclientgen

Strongly Typed Client API Generators generate strongly typed client APIs in C# .NET and in TypeScript for jQuery and Angular 2+ from ASP.NET Web API and .NET Core Web API
MIT License
167 stars 38 forks source link

option to use the name of HttpGet(Name = "GetWeatherForecast") for generated function name #163

Closed zijianhuang closed 2 weeks ago

zijianhuang commented 2 weeks ago
    [HttpGet(Name = "super")]

is the same as [HttpGet("super")]

done long ago.

Name: Gets the route name. The route name can be used to generate a link using a specific route, instead of relying on selection of a route based on the given set of route values.