ConfiguredTaskAwaitable<TResult>.ConfiguredTaskAwaiter.GetResult Method

Definition

Ends the await on the completed task.

public:
 TResult GetResult();
public TResult GetResult ();
member this.GetResult : unit -> 'Result
Public Function GetResult () As TResult

Returns

TResult

The result of the completed task.

Exceptions

The awaiter was not properly initialized.

The task was canceled.

The task completed in a faulted state.

Remarks

This method is intended for compiler use; do not use it directly in your code.

Applies to