@fekberg I have a situation
1) Async method returning task ( e.g Task DoSomething()) which internally uses HttpClient .
2) Sync method calling method 1 and waiting in blocking way for result ( e.g DoSomething().Result)
Any suggestions to solve this.
@fekberg Yes. I watched your pluralsight course on asynchronous programming. Thanks for the wonderful course. I will watch again for better understanding.
@fekberg As said, I wrapped async call with https://t.co/C0q10gMOlq.
To get result from task, I use getawaiter().getresult() and it is blocking ui thread. Please suggest any alternative solution..it would help me a lot.
@fekberg I had watched your plural sight design pattern videos and youtube video about record type. Very clear explanation by you. It helps me a lot to understand the content clearly. Thank you and keep posting more videos