1 write to connection
Microsoft.AspNetCore.SignalR.Client.Tests (1)
HubServerProxy.GeneratedIMyHub.g.cs (1)
17this.connection = connection;
18 references to connection
Microsoft.AspNetCore.SignalR.Client.Tests (18)
HubServerProxy.GeneratedIMyHub.g.cs (18)
22return this.connection.InvokeAsync("GetNothing"); 27return this.connection.InvokeAsync<int>("GetScalar"); 32return this.connection.InvokeAsync<System.Collections.Generic.List<int>>("GetCollection"); 37return this.connection.InvokeAsync<int>("SetScalar", a); 42return this.connection.InvokeAsync<System.Collections.Generic.List<int>>("SetCollection", a); 47return this.connection.StreamAsChannelAsync<int>("StreamToClientViaChannel"); 52return this.connection.StreamAsChannelAsync<int>("StreamToClientViaChannelWithToken", cancellationToken); 57return this.connection.StreamAsync<int>("StreamToClientViaEnumerableWithToken", cancellationToken); 62return this.connection.SendAsync("StreamFromClientViaChannel", reader); 67return this.connection.SendAsync("StreamFromClientViaEnumerable", reader); 72return this.connection.InvokeAsync<int>("StreamFromClientButAlsoReturnValue", reader); 77return this.connection.StreamAsChannelAsync<int>("StreamBidirectionalViaChannel", reader); 82return this.connection.StreamAsChannelAsync<int>("StreamBidirectionalViaChannelWithToken", reader, cancellationToken); 87return this.connection.StreamAsync<int>("StreamBidirectionalViaEnumerable", reader); 92return this.connection.StreamAsync<int>("StreamBidirectionalViaEnumerableWithToken", reader, cancellationToken); 97return new System.Threading.Tasks.ValueTask(this.connection.InvokeAsync("ReturnValueTask")); 102return new System.Threading.Tasks.ValueTask<int>(this.connection.InvokeAsync<int>("ReturnGenericValueTask")); 107return this.connection.InvokeAsync<int?>("HandleNullables", nullable);