9 references to StreamAsChannelCoreAsync
Microsoft.AspNetCore.SignalR.Client.Core (2)
HubConnection.cs (1)
676
var reader = await
StreamAsChannelCoreAsync
(methodName, typeof(T), args, cts.Token).ConfigureAwait(false);
HubConnectionExtensions.StreamAsChannelAsync.cs (1)
276
var inputChannel = await hubConnection.
StreamAsChannelCoreAsync
(methodName, typeof(TResult), args, cancellationToken).ConfigureAwait(false);
Microsoft.AspNetCore.SignalR.Client.Tests (7)
HubConnectionTests.cs (3)
852
mockConnection.Setup(c => c.
StreamAsChannelCoreAsync
(It.IsAny<string>(), It.IsAny<Type>(), It.IsAny<object[]>(), It.IsAny<CancellationToken>()))
865
_ = await hubConnection.
StreamAsChannelCoreAsync
("stream", typeof(int), Array.Empty<object>(), default);
874
mockConnection.Verify(c => c.
StreamAsChannelCoreAsync
("stream", It.IsAny<Type>(), It.IsAny<object[]>(), It.IsAny<CancellationToken>()), Times.Once);
HubServerProxyGeneratorTests.cs (4)
181
.Setup(x => x.
StreamAsChannelCoreAsync
(
188
.Setup(x => x.
StreamAsChannelCoreAsync
(
268
.Setup(x => x.
StreamAsChannelCoreAsync
(
275
.Setup(x => x.
StreamAsChannelCoreAsync
(