System::Threading::Tasks::Delay method

System::Threading::Tasks::Delay(int32_t) method

Creates a task that completes after a time delay.

TaskPtr System::Threading::Tasks::Delay(int32_t millisecondsDelay)
ParameterTypeDescription
millisecondsDelayint32_tThe number of milliseconds to wait before completing the returned task, or -1 to wait indefinitely.

ReturnValue

A task that represents the time delay.

See Also

System::Threading::Tasks::Delay(int32_t, const CancellationToken&) method

Creates a task that completes after a time delay and can be cancelled.

TaskPtr System::Threading::Tasks::Delay(int32_t millisecondsDelay, const CancellationToken &cancellationToken)
ParameterTypeDescription
millisecondsDelayint32_tThe number of milliseconds to wait before completing the returned task, or -1 to wait indefinitely.
cancellationTokenconst CancellationToken&The cancellation token that can be used to cancel the delay.

ReturnValue

A task that represents the time delay.

See Also