Programming
Creating FormUrlEncodedContent Variables from Objects
If you want to send some URL encoded content to an API you can use the built in FormUrlEncodedContent to convert an IEnumerable<KeyValuePair<string, string>> to a correctly coded content object. The most basic way to get the required KeyValuePair IEnumerable is to manually create it. As this is quite a Read more…