有没有办法(无论如何)使用restsharp模拟同步请求?

我正在开发一个必须等​​待成功的登录响应才能向前导航的应用程序,在整个代码中传递回调以仅检查内容是很痛苦的。

最佳答案

使用Microsoft.Bcl.Async package

然后使用如下扩展方法:

public static class RestClientExtensions
    {
        public static Task<IRestResponse> ExecuteTask (this IRestClient restClient, RestRequest restRequest)
        {
            var tcs = new TaskCompletionSource<IRestResponse> ();
            restClient.ExecuteAsync (restRequest, (restResponse, asyncHandle) =>
            {
                if (restResponse.ResponseStatus == ResponseStatus.Error)
                    tcs.SetException (restResponse.ErrorException);
                else
                    tcs.SetResult (restResponse);
            });
            return tcs.Task;
        }
    }


您可以拨打以下电话:

var restResponse = await restClient.ExecuteTask(restRequest);

10-04 22:30