However, this method of dealing with Async method in .NET is prone to deadlocks when used in UI threads. We frequently have users reaching out wondering why they're application is hanging and they never receive a response. The solution is to use the following instead:
Our examples currently look like this:
sdk.Single.Check(model).Result
However, this method of dealing with Async method in .NET is prone to deadlocks when used in UI threads. We frequently have users reaching out wondering why they're application is hanging and they never receive a response. The solution is to use the following instead:
await sdk.Single.Check(model)