5 references to _completionSource
Microsoft.AspNetCore.SignalR.Client.Core (5)
Internal\InvocationRequest.cs (5)
183
public Task<object?> Result =>
_completionSource
.Task;
200
_completionSource
.TrySetResult(completionMessage.Result);
214
_completionSource
.TrySetException(exception);
220
_completionSource
.TrySetException(new InvalidOperationException($"Streaming hub methods must be invoked with the '{nameof(HubConnection)}.{nameof(HubConnectionExtensions.StreamAsChannelAsync)}' method."));
235
_completionSource
.TrySetCanceled();