ValueTask.FromResult<TResult>(TResult) Método

Definição

Cria um ValueTask<TResult> que é concluído com êxito com o resultado especificado.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)

Parâmetros de tipo

TResult

O tipo de resultado retornado pela tarefa.The type of the result returned by the task.

Parâmetros

result
TResult

O resultado a armazenar na tarefa concluída.The result to store into the completed task.

Retornos

ValueTask<TResult>

A tarefa concluída com êxito.The successfully completed task.

Aplica-se a