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
Audit uses of ContinueWith. Audit uses of ContinueWith, SafeContinueWith, StartNew, SafeStartNew, and Task.Run to identify cases where simpler approaches are viable
Uniformly use a main thread check/assert method. Design, implement, and uniformly use a main thread check/assert method
The text was updated successfully, but these errors were encountered:
sharwell
changed the title
❓ Is there a reason this isn't using IThreadingContext? It seems like we should be using that interface to the extent possible.
Use IThreadingContext instead of ThreadHelper
Oct 11, 2018
Currently we use both
IThreadingContext
andThreadHelper
. We should unify code on the former for two reasons:IThreadingContext
allows for work tracking, which improves the ability to isolate tests that run asynchronous codeOriginally posted by @sharwell in #30451
The text was updated successfully, but these errors were encountered: