无法在我的标题中包含用户代理

时间:2019-02-17 17:39:41

标签: c# post http-headers

我目前正在尝试与用户代理发送发帖请求,但是每次尝试使用用户代理时都会出错。请有人帮忙吗?

我已经尝试过:

request.Headers.Add("User-Agent", "{My user agent}");

当我尝试使用上面的代码时出现此错误:

System.ArgumentException: 'The 'User-Agent' header must be modified using the appropriate property or method.
Parameter name: name'

预先感谢

1 个答案:

答案 0 :(得分:0)

使用HttpRequestHeader.UserAgent代替字符串“ User-Agent”。会解决的。