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