Conversion
Provides task result conversion methods.
Allows to convert Task<T> of unknown result type into dynamically
typed task which result can be obtained as Object
or any other data type using dynamic approach.
Converts one type of task into another.
public static Task<TOutput> Convert<TInput, TOutput>(this Task<TInput> task, Converter<TInput, TOutput> converter)
Converts one type of task into another.
public static Task<TOutput> Convert<TInput, TOutput>(this Task<TInput> task, Converter<TInput, Task<TOutput>> converter)
Converts one type of task into another.
Converts value type into nullable value type.