sdk_csharp icon indicating copy to clipboard operation
sdk_csharp copied to clipboard

[Feature Request] Implement async methods in Bunq C# SDK

Open SvenLauterbach opened this issue 1 year ago • 0 comments
trafficstars

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.

SvenLauterbach avatar Sep 03 '24 15:09 SvenLauterbach