You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that the Bunq C# SDK does not support async methods. In fact it uses .Result to make asynchronous network calls synchronous. Example in ApiClient.cs:
HttpResponseMessage result = this.client.SendAsync(requestMessage).Result;
It would be great if the Bunq SDK could switch to async method. This could improve performance/scalability for consuming applications. Also, the async/await programming model is now quite established in the .NET ecosystem.
The text was updated successfully, but these errors were encountered:
It seems that the Bunq C# SDK does not support async methods. In fact it uses
.Result
to make asynchronous network calls synchronous. Example in ApiClient.cs:HttpResponseMessage result = this.client.SendAsync(requestMessage).Result;
It would be great if the Bunq SDK could switch to async method. This could improve performance/scalability for consuming applications. Also, the async/await programming model is now quite established in the .NET ecosystem.
The text was updated successfully, but these errors were encountered: