C#: Pass multiple values to a REST endpoint without having multiple parameters

Instead of passing the parameters to /REST.svc?param1=a&param2=b

var items = new NameValueCollection();
items.Add("param1", "a");
items.Add("param2", "b");

var content = HttpPost("http://MyRestEndpoint", items);

public static string HttpPost(string uri, NameValueCollection pairs)
        {
            byte[] response = null;
            using (WebClient client = new WebClient())
            {
                response = client.UploadValues(uri, pairs);
            }
            return System.Text.Encoding.UTF8.GetString(response);
        }

NOTE: You can quite easily inject a proxy using the following code:
client.Proxy = new System.Net.WebProxy("myProxy", 1001);

Comments

Popular posts from this blog

SharePoint 2013: Error updating managed account credentials

Error deploying Nintex workflow: An item with the same key has already been added