I need to execute multiple async tasks in Silverlight.
Documentation of the 3rd party package states I can use
await Task.WhenAll()
Unfortunately silverlight only have Task.WaitAll()
and it is not awaitable. If I try to use it I get deadlock (I assume - because whole thing freezes)
What is the proper pattern to use in async method?