在wp7中使用REST的最佳方法是什么

时间:2012-05-09 13:24:08

标签: windows-phone-7

在WP7中使用REST的最佳方法是什么?请将源代码或网址发送给我。我尝试使用asynchronus访问WebClient但无法正常工作。服务器没有收到请求。

2 个答案:

答案 0 :(得分:1)

您可以尝试使用restsharp http://restsharp.org/

答案 1 :(得分:0)

System.Uri targetUri = new System.Uri("http://www.dot.com/restSvc");
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(targetUri);
request.BeginGetResponse(new AsyncCallback(ReadWebRequestCallback), request);