How to set WebClient Content-Type Header?
webclient.Headers[HttpRequestHeader.ContentType] = "application/x-www-form-urlencoded";
You could try adding to the Headers collection.
myWebClient.Headers.Add("Content-Type","application/xxx");
webclient.Headers[HttpRequestHeader.ContentType] = "application/x-www-form-urlencoded";
You could try adding to the Headers collection.
myWebClient.Headers.Add("Content-Type","application/xxx");