Open
Description
I have noticed that the synchronous Execute
methods are just wrapping native HttpClient.SendAsync
,
public RestResponse Execute(RestRequest request) => AsyncHelpers.RunSync(() => ExecuteAsync(request));
I was wondering if there already is an implementation or if there is a plan to use the native HttpClient.Send
, which was only introduced in NET 5 and onwards?
A some related discussion is here:
https://stackoverflow.com/questions/53529061/whats-the-right-way-to-use-httpclient-synchronously