Table of Contents

Struct WithRawResponseTask<T>.ConfiguredTaskAwaitable.ConfiguredAwaiter

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll

Custom configured awaiter that unwraps WithRawResponse<T> to just T.

public readonly struct WithRawResponseTask<T>.ConfiguredTaskAwaitable.ConfiguredAwaiter : ICriticalNotifyCompletion, INotifyCompletion
Implements
Inherited Members

Properties

IsCompleted

Gets whether the underlying task has completed.

public bool IsCompleted { get; }

Property Value

bool

Methods

GetResult()

Gets the result, unwrapping to just the data.

public T GetResult()

Returns

T

OnCompleted(Action)

Schedules the continuation action.

public void OnCompleted(Action continuation)

Parameters

continuation Action

UnsafeOnCompleted(Action)

Schedules the continuation action without capturing the execution context.

public void UnsafeOnCompleted(Action continuation)

Parameters

continuation Action