Click or drag to resize
DelayedTask Methods

The DelayedTask type exposes the following members.

Methods
  NameDescription
Public methodStatic memberDelay(TimeSpan)
Creates a task that will complete after a time delay.
Public methodStatic memberDelay(TimeSpan, CancellationToken)
Creates a task that will complete after a time delay.
Public methodStatic memberWhenAll(IEnumerableTask)
Creates a task that will complete when all of the supplied tasks have completed.
Public methodStatic memberWhenAll(Task)
Creates a task that will complete when all of the supplied tasks have completed.
Public methodStatic memberWhenAllTResult(IEnumerableTaskTResult)
Creates a task that will complete when all of the supplied tasks have completed.
Public methodStatic memberWhenAllTResult(TaskTResult)
Creates a task that will complete when all of the supplied tasks have completed.
Public methodStatic memberWhenAny(IEnumerableTask)
Creates a task that will complete when any of the supplied tasks have completed.
Public methodStatic memberWhenAny(Task)
Creates a task that will complete when any of the supplied tasks have completed.
Public methodStatic memberWhenAnyTResult(IEnumerableTaskTResult)
Creates a task that will complete when any of the supplied tasks have completed.
Public methodStatic memberWhenAnyTResult(TaskTResult)
Creates a task that will complete when any of the supplied tasks have completed.
Public methodStatic memberYield
Creates an awaitable task that asynchronously yields back to the current context when awaited.
Top
See Also