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
There is literally no Async/Await interface for operations. This definitely kills the whole essence of having an SDK for netcore.
Individual methods with Begin... End... (What is this?) It really makes no sense!
It's only in Java or Javascript we have the need to pass callbacks to methods. In C# netcore we use Async/Await, hence when a task is completed it returns the expected result and we make use of it, not the other way round.
We really need the team to build the interfaces like it was meant for C# developers. Thank you.
There is literally no Async/Await interface for operations. This definitely kills the whole essence of having an SDK for netcore.
Individual methods with Begin... End... (What is this?) It really makes no sense!
It's only in Java or Javascript we have the need to pass callbacks to methods. In C# netcore we use Async/Await, hence when a task is completed it returns the expected result and we make use of it, not the other way round.
We really need the team to build the interfaces like it was meant for C# developers. Thank you.
This is wrong (Begin... & End...)
This is what we expect (Async/Await)
The text was updated successfully, but these errors were encountered: