ContributionsMost RecentMost LikesSolutionsHide a route from a method that has 2 routes Hi everyone! I want to hide a route (no show in swagger documentation). Example: [Route("apirest/model/{param1}/{param2}/{param3}/{param4}")] - SHOW [Route("apirest/model/{param1}/{param2}/{param3}/{param4}/{param5}")] – NO SHOW public HttpResponseMessage Getvalues(string param1, string param2, string param3, double param4, string param5="") Please help!!