有没有办法同步使用restsharp?我在Visual Studio中看到的每个方法都有"async"后缀和restsharp主页(有以下示例):
// execute the request
RestResponse response = client.Execute(request);
var content = response.Content; // raw content as string
明确区分同步请求和异步请求:
// easy async support
client.ExecuteAsync(request, response => {
Console.WriteLine(response.Content);
});
如何访问此"执行"同步方法?
我在他们的谷歌群组中问过,他们说这是因为使用 wp7 时的"platorm 限制"。很整洁吧?