ValueTask.FromResult<TResult>(TResult) Method
Definition
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.
Creates a ValueTask<TResult> that's completed successfully with the specified result.
public:
generic <typename TResult>
static System::Threading::Tasks::ValueTask<TResult> FromResult(TResult result);
public static System.Threading.Tasks.ValueTask<TResult> FromResult<TResult> (TResult result);
static member FromResult : 'Result -> System.Threading.Tasks.ValueTask<'Result>
Public Shared Function FromResult(Of TResult) (result As TResult) As ValueTask(Of TResult)
Type Parameters
- TResult
The type of the result returned by the task.
Parameters
- result
- TResult
The result to store into the completed task.
Returns
The successfully completed task.
Applies to
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.