WebClient Headers属性缺少Add方法?

时间:2012-06-09 05:38:39

标签: .net windows-phone-7 webclient

在.NET(适用于Windows Phone)中,我正在尝试使用WebClient类将XML发送到Web服务。我找到的示例使用Add方法修改添加标头,但是我收到一条错误,指出无法找到Add方法:

using System.Net;
...
WebClient wc = new WebClient();
wc.Headers.Add(HttpRequestHeader.ContentType, "text/xml");

我在某个地方错过了参考资料还是已经改变了?我也没有列出Set方法。

1 个答案:

答案 0 :(得分:3)

wc.Headers [“ContentType”] =“text / xml”;