iLexDev / ASP.NET-WebApi-MultipartDataMediaFormatter

Used for binding custom types (including files) when sending and receiving multipart encoded form data
MIT License
93 stars 44 forks source link

Support for Bind Prefix #33

Open inetzo opened 2 years ago

inetzo commented 2 years ago

We've added this to support Bind Prefix in a Controller Action.

public HttpResponseMessage SaveProduct([Bind(Prefix = "product")] Product model)