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
As mentioned by Stephen Cleary libraries should use await FooAsync().ConfigureAwait(false). This stops it from posting to SynchronizationContext and lets the code continue on the current thread.
Use ValueTask when appropriate, as described by Stephen Toub
The text was updated successfully, but these errors were encountered:
As mentioned by Stephen Cleary libraries should use
await FooAsync().ConfigureAwait(false)
. This stops it from posting toSynchronizationContext
and lets the code continue on the current thread.Use
ValueTask
when appropriate, as described by Stephen ToubThe text was updated successfully, but these errors were encountered: