RestSharp执行同步,而不是异步

时间:2012-12-05 20:21:13

标签: c# httpwebrequest restsharp

有没有办法同步使用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);
});

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

1 个答案:

答案 0 :(得分:4)

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