5 references to StreamAsync
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (2)
HubConnectionTests.cs (1)
656var asyncEnumerable = connection.StreamAsync<int>("StreamException");
HubConnectionTests.Tracing.cs (1)
504var asyncEnumerable = connection.StreamAsync<int>("StreamException");
Microsoft.AspNetCore.SignalR.Client.Tests (2)
HubConnectionTests.cs (1)
271var result = hubConnection.StreamAsync<int>("testMethod", cancellationToken: new CancellationToken(canceled: true));
HubServerProxy.GeneratedIMyHub.g.cs (1)
57return this.connection.StreamAsync<int>("StreamToClientViaEnumerableWithToken", cancellationToken);
Microsoft.AspNetCore.SignalR.Tests (1)
NativeAotTests.cs (1)
93await foreach (var item in connection.StreamAsync<int>(nameof(AsyncMethodHub.ReturnEnumerableValueType)))