diff --git a/xml/System.Threading.Tasks/Task.xml b/xml/System.Threading.Tasks/Task.xml
index 5b75130d0b2..24f273a315f 100644
--- a/xml/System.Threading.Tasks/Task.xml
+++ b/xml/System.Threading.Tasks/Task.xml
@@ -2106,7 +2106,7 @@ End Sub
- The number of milliseconds to wait before completing the returned task, or -1 to wait indefinitely.
+ The number of milliseconds to wait before completing the returned task, or -1 to wait indefinitely. This time does not include any time that passes while the system is suspended (e.g. in Standby or Hibernate).
Creates a task that completes after a specified number of milliseconds.
A task that represents the time delay.
@@ -2177,7 +2177,7 @@ End Sub
- The time span to wait before completing the returned task, or to wait indefinitely.
+ The time span to wait before completing the returned task, or to wait indefinitely. This time does not include any time that passes while the system is suspended (e.g. in Standby or Hibernate).
Creates a task that completes after a specified time interval.
A task that represents the time delay.
@@ -2243,7 +2243,7 @@ End Sub
- The number of milliseconds to wait before completing the returned task, or -1 to wait indefinitely.
+ The number of milliseconds to wait before completing the returned task, or -1 to wait indefinitely. This time does not include any time that passes while the system is suspended (e.g. in Standby or Hibernate).
A cancellation token to observe while waiting for the task to complete.
Creates a cancellable task that completes after a specified number of milliseconds.
A task that represents the time delay.
@@ -2307,7 +2307,7 @@ End Sub
- The time span to wait before completing the returned task, or to wait indefinitely.
+ The time span to wait before completing the returned task, or to wait indefinitely. This time does not include any time that passes while the system is suspended (e.g. in Standby or Hibernate).
A cancellation token to observe while waiting for the task to complete.
Creates a cancellable task that completes after a specified time interval.
A task that represents the time delay.