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