WP7 Restsharp POST 结果为空
我正在尝试让 RestShap 工作,但到目前为止还没有运气。我还没有真正找到任何好的文档?
不管怎样,这应该有效吗..response.content 是空白
private void webclienttest()
{
string query = @"<?xml blah blah...>;
var client = new RestClient("http://myurl.com");
var request = new RestRequest(query, Method.POST);
client.ExecuteAsync(request, (response) =>
{
var resource = response.Content;
PopulateList();
});
}
im trying to get RestShap working, but no luck so far. I havent really found any good documentation?
anyway, Should this work.. response.content is blank
private void webclienttest()
{
string query = @"<?xml blah blah...>;
var client = new RestClient("http://myurl.com");
var request = new RestRequest(query, Method.POST);
client.ExecuteAsync(request, (response) =>
{
var resource = response.Content;
PopulateList();
});
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题就在这里:
你必须使用 RestResponse。
如果它不起作用,可能是由于您的查询或序列化错误造成的。
Your problem lies here:
You must use a RestResponse.
If it does not work, maybe it comes from your query or bad serialization.