4

有没有办法同步使用restsharp?我在 Visual Studio 中看到的每个方法都有“异步”后缀和 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);
});

如何访问此“执行”同步方法?

4

1 回答 1

4

我在他们的 googlegroups 中问过,他们说这是因为使用 wp7 时的“平台限制”。很整洁吧?

于 2012-12-13T20:18:22.960 回答