System.Threading.Tasks.Sources Namespace

Provides types for creating ValueTask and ValueTask<TResult> optimized to minimize allocations. The IValueTaskSource and IValueTaskSource<TResult> interfaces can be implemented on objects used to provide the backing implementations for ValueTask and ValueTask<TResult>, and ManualResetValueTaskSourceCore<TResult> can be used to implement the core logic necessary to support the task lifecycle. These are advanced types and need only be used in specialized situations where performance is paramount.

Structs

ManualResetValueTaskSourceCore<TResult>

Provides the core logic for implementing a manual-reset IValueTaskSource or IValueTaskSource<TResult>.

Interfaces

IValueTaskSource

Represents an object that can be wrapped by a ValueTask.

IValueTaskSource<TResult>

Represents an object that can be wrapped by a ValueTask<TResult>.

Enums

ValueTaskSourceOnCompletedFlags

Provides flags passed from ValueTask and ValueTask<TResult> to the OnCompleted method to control the behavior of a continuation.

ValueTaskSourceStatus

Indicates the status of an IValueTaskSource or IValueTaskSource<TResult>.