1

我在尝试为 Windows Phone 7 创建 WebRequest 时遇到了一些问题。

当我尝试遵循 MSDN 中的代码示例时,它一直说要这样做:

Stream data = response.GetRequesteStream;

但是当我在 Visual Studio 2010 Express for Windows Phone 中输入它时,我得到一条红色波浪线和一条错误消息,指出:

System.Net.WebRequest does not contain a reference for "GetRequestStream" 
and no extention method "GetRequestStream" accepting a first argument of 
type 'System.Net.WebRequest' could be found

关于发生了什么的任何想法?好像我错过了一个实际的方法......但我不知道为什么。

4

1 回答 1

2

Windows Phone 不支持许多(大多数)同步 API。您必须使用异步BeginGetRequestStream方法。

网上可能还有很多,但可以在此处找到电话的一个使用示例。

于 2012-06-08T21:08:40.420 回答