One of my action parameters is instance of class which have param1, param2, param3 parameters (with [FromUri] attribute and I can't replace it with [FromBody])
And that parameters are in routing too.
When asp.net web api help page generates parameters from action I am getting duplicates of them in URI parameters.
How can I ignore one of them?
In
Areas\HelpPage\HelpPageConfigurationExtensions.csfind the methodGenerateUriParametersand comment out the else clause.Note that this might remove too many parameters from your help pages if you don't consistently use
[FromUri]