4 references to _completion
Microsoft.JSInterop (4)
Infrastructure\PendingAsyncCall.cs (4)
14
public Task<TValue> Task =>
_completion
.Task;
24
_completion
.TrySetResult(value!);
27
public void Fail(Exception exception) =>
_completion
.TrySetException(exception);
29
public void Cancel(CancellationToken cancellationToken) =>
_completion
.TrySetCanceled(cancellationToken);