Posts Tagged: PUT

FormUrlEncodedContent with support for array values

Posted by & filed under Dev', Tips.

As convenient as System.Web.Http is for .NET developers, while working on my current project, I discovered that it did not support array values out of the box. When you want to post something in the ‘x-www-form-urlencoded’ form, and using the FormUrlEncodedContent class, you are limited to string keys and values as FormUrlEncodedContent is build out […]