3 references to On
Microsoft.AspNetCore.SignalR.Client.Tests (3)
HubClientProxy.IMyClient.g.cs (1)
19registrations[2] = connection.On<int, float, int?>("ManyArgs", (a, b, c) => provider.ManyArgs(a, b, c));
HubConnectionTests.Extensions.cs (1)
86(hubConnection, tcs) => hubConnection.On<int, string, float>("Foo",
HubConnectionTests.Protocol.cs (1)
454hubConnection.On<int, string, float>("Foo", (r1, r2, r3) => handlerCalled.TrySetResult(new object[] { r1, r2, r3 }));