1 implementation of ManyArgs
Microsoft.AspNetCore.SignalR.Client.Tests (1)
HubClientProxyGeneratorTests.cs (1)
49public void ManyArgs(int a, float b, int? c)
1 reference to ManyArgs
Microsoft.AspNetCore.SignalR.Client.Tests (1)
HubClientProxy.IMyClient.g.cs (1)
19registrations[2] = connection.On<int, float, int?>("ManyArgs", (a, b, c) => provider.ManyArgs(a, b, c));