System.Threading.Tasks.Sources Namespace
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 |
ValueTaskSourceStatus |
Indicates the status of an IValueTaskSource or IValueTaskSource<TResult>. |