get_Result()

ResultValueTask::get_Result() const method

Gets the result of the completed task.

T System::Threading::Tasks::ResultValueTask<T>::get_Result() const

Return Value

T The result value.

Remarks

If the task is backed by a ResultTask, this method will await the result and cache it. Subsequent calls will return the cached value without awaiting.

See Also