I have defined the following action in FieldsController
[HttpGet]
[Route("api/farms/{farmIds}/{harvestYear:int}/fields")]
public IHttpActionResult Get(IntegerListParameter farmIds, int harvestYear)
The class IntegerListParameter is defined with ModelBinder
[ModelBinder(typeof(IntegerListModelBinder))]
public class IntegerListParameter : List<int>
{
}
My problem is that the WebApi.HelpPage is not recognizing Actions that have IntegerListParameter as a parameter.
I am using Microsoft.AspNet.WebApi.HelpPage" version="5.2.3