Why is a Required * path parameter {namespace} getting detected by Swagger?

102 Views Asked by At

My .Net MVC project has the below ApiController:

enter image description here

But the Swagger UI generates two methods:

enter image description here

Observe that the ActionName TestMethod1 is omitted(probably because there is only one HttpGet in this controller)

1

There are 1 best solutions below

0
On BEST ANSWER

This was due to the DefaultRoute not having the {action} in the path.

 routes.MapRoute(
                name: "Default",
                url: "{controller}/{id}",
                defaults: new { controller = "Addon", action = "Index", id = UrlParameter.Optional }
            );

It should be like:

 routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Addon", action = "Index", id = UrlParameter.Optional }
            );