有沒有辦法同步使用restsharp?我在Visual Studio中看到每一種方法都有了「異步」後綴和restsharp主頁,(至極具有下面的例子):RestSharp執行同步,而不是異步
// execute the request
RestResponse response = client.Execute(request);
var content = response.Content; // raw content as string
顯然使得同步和異步請求之間的distiction:
// easy async support
client.ExecuteAsync(request, response => {
Console.WriteLine(response.Content);
});
如何訪問此「執行」同步方法?
我安裝了Restharp並且無法訪問「Execute」方法,有什麼想法? –