ASP .net 4.5 and using WEB API 2 Help pages 5.2 (https://www.nuget.org/packages/Microsoft.AspNet.WebApi.HelpPage/5.2.2)
I have created all the page documentation for my web API functions that use model binding or query strings without any problem. However, when it comes to creating the help page for an API function that uses multi part form data there does not seem to be anyway of making the help page show what the form needs. For example, if the form has/accepts 10 fields including a file upload, how can I display that on the help page. I can't bind to a model because the web API does not work like that. Am I missing something simple here or is it just not possible.
I have searched the internet and a very similar question on stackoverflow (How to add Multipart Form Data parameter on WebAPI help page) but i have not found any helpful or possible options on how to overcome the problem.
I would really appreciate some help, information on this as im at a dead end.
Thanks All