7 references to _channel
Microsoft.AspNetCore.SignalR.Client.Core (7)
Internal\InvocationRequest.cs (7)
95
public ChannelReader<object?> Result =>
_channel
.Reader;
110
_channel
.Writer.TryComplete(new InvalidOperationException("Server provided a result in a completion response to a streamed invocation."));
125
_channel
.Writer.TryComplete();
139
_channel
.Writer.TryComplete(exception);
146
while (!
_channel
.Writer.TryWrite(item))
148
if (!await
_channel
.Writer.WaitToWriteAsync().ConfigureAwait(false))
170
_channel
.Writer.TryComplete(new OperationCanceledException());