4

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

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

我只是在某处缺少参考还是已更改?我也没有列出 Set 方法。

4

1 回答 1

3

wc.Headers["ContentType"] = "text/xml";

于 2012-06-09T07:53:52.497 回答