如何在c#中使用System.Net.WebRequest设置用户代理

时间:2015-11-11 20:56:23

标签: c# webrequest

您好我尝试使用WebRequest设置用户代理,但遗憾的是我只是找到了如何使用HttpWebRequest执行此操作,所以这是我的代码,我希望您可以帮我设置用户代理使用WebRequest。

这是我的代码

    public string Post(string url, string Post, string Header, string Value)
    {
        string str_ReturnValue = "";

        WebRequest request = WebRequest.Create(url);

        request.Method = "POST";
        request.ContentType = "application/json;charset=UTF-8";                        
        request.Timeout = 1000000;

        if (Header != null & Value != null)
        {
            request.Headers.Add(Header, Value);                                
        }

        using (Stream s = request.GetRequestStream())
        {
            using (StreamWriter sw = new StreamWriter(s))
                sw.Write(Post);
        }

        using (Stream s = request.GetResponse().GetResponseStream())
        {                
            using (StreamReader sr = new StreamReader(s))
            {
                var jsonData = sr.ReadToEnd();
                str_ReturnValue += jsonData.ToString();
            }
        }

        return str_ReturnValue;
    }

我尝试添加" request.Headers.Add(" user-agent",_ USER_AGENT);"但是我收到一条错误消息。

3 个答案:

答案 0 :(得分:24)

使用HttpWebRequest上的UserAgent属性将其投放到HttpWebRequest

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.UserAgent = "my user agent";

或者,您可以使用WebRequest.CreateHttp而不是强制转换。

答案 1 :(得分:1)

如果您尝试使用HttpWebRequest而不是基本的WebRequest,则会有specific property exposed for UserAgent

// Create a new 'HttpWebRequest' object to the mentioned URL.
var myHttpWebRequest=(HttpWebRequest)WebRequest.Create("http://www.contoso.com");
myHttpWebRequest.UserAgent=".NET Framework Test Client";

// Assign the response object of 'HttpWebRequest' to a 'HttpWebResponse' variable.
var myHttpWebResponse=(HttpWebResponse)myHttpWebRequest.GetResponse();

答案 2 :(得分:-1)

WebRequest postrequest = WebRequest.Create("protocol://endpointurl.ext");
((System.Net.HttpWebRequest)postrequest).UserAgent = ".NET Framework"