Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 197 Bytes

PH_S013.md

File metadata and controls

9 lines (5 loc) · 197 Bytes

PH_S013 - Thread.Sleep in Async Method

Problem

The invocation of Thread.Sleep(...) inside an asynchronous method is discouraged.

Solution

Make use of await Task.Delay(...) instead.