我在尝试为Windows Phone 7创建WebRequest时遇到了一些问题。
当我尝试遵循MSDN中的代码示例时,它一直在说:
Stream data = response.GetRequesteStream;
但是当我在Windows Phone的Visual Studio 2010 Express中键入它时,我得到一条红色波浪形线和一条错误消息,说明:
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
关于发生了什么的任何想法?好像我错过了一个实际的方法......但我不知道为什么。
答案 0 :(得分:2)
Windows Phone不支持许多(大多数)同步API。您必须使用异步BeginGetRequestStream
方法。
可能还有更多在线内容,但是电话can be found here的一个使用示例。