使用System.Net.WebClient发布请求

时间:2014-06-05 18:41:55

标签: c# post webclient

我相信答案很简单,但我发现的代码样本都没有... 基本上我尝试使用System.Net.WebClient发送一个post请求,带有一个字符串参数;但是服务器将参数作为null。 它必须用dotnet 2编写,所以我不能使用HttpClient(顺便说一句)。

客户端:

        using(var client = new WebClient())
        {
            try
            {
                var res = client.UploadString(_uri, "POST", "test");
                if (res != "test")
                    return false;
            }

            catch (Exception exception)
            {
                  Console.WriteLine(exception.Message);
                  return false;
            }

服务:

            public string Post([FromBody]string value)
            {
                return value;
            }

1 个答案:

答案 0 :(得分:0)

Haven未对此代码进行测试,但请尝试一下。您可以添加更多标头,如果它引发更多错误,则可能需要更多特定标头。

using (WebClient client = new WebClient())
{
string yourURL = "http://example.com/example.php";
string PARM= "par1=value1&par=value2";
client.Headers[HttpRequestHeader.ContentType] = "application/x-www-form-urlencoded";
string result= client.UploadString(yourURL, PARM);

if(result != "test"){
return false
}
}