-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Labels
Description
One of the things missing in v107 is the sync functions, as those were deprecated to only support async versions. This is yet another pain point in the API surface area for someone migrating from v106 to v107, as you have to re-write all your code to be async, or learn how to correctly call async functions in a sync environment. For lots of legacy code, moving to a full async model is a huge amount of work.
I will implement this in my PR, as I really need this myself to avoid having to re-write all my existing RestSharp code. Internally it will just use an Async helper, but that is better than having to recode it and implement that myself.
embix, GuilhermeSTI and ajh1138