Best practice is to add ConfigureAwait(false) to awaited tasks in library code. This helps avoid deadlocks and improves performance by avoiding the overhead of continuing in the original context. See https://devblogs.microsoft.com/dotnet/configureawait-faq/ for further details.
Best practice is to add
ConfigureAwait(false)
toawait
ed tasks in library code. This helps avoid deadlocks and improves performance by avoiding the overhead of continuing in the original context. See https://devblogs.microsoft.com/dotnet/configureawait-faq/ for further details.