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