17 references to SendCoreAsync
Microsoft.AspNetCore.SignalR.Client.Core (11)
HubConnectionExtensions.SendAsync.cs (11)
27return hubConnection.SendCoreAsync(methodName, Array.Empty<object>(), cancellationToken); 42return hubConnection.SendCoreAsync(methodName, new[] { arg1 }, cancellationToken); 58return hubConnection.SendCoreAsync(methodName, new[] { arg1, arg2 }, cancellationToken); 75return hubConnection.SendCoreAsync(methodName, new[] { arg1, arg2, arg3 }, cancellationToken); 93return hubConnection.SendCoreAsync(methodName, new[] { arg1, arg2, arg3, arg4 }, cancellationToken); 112return hubConnection.SendCoreAsync(methodName, new[] { arg1, arg2, arg3, arg4, arg5 }, cancellationToken); 132return hubConnection.SendCoreAsync(methodName, new[] { arg1, arg2, arg3, arg4, arg5, arg6 }, cancellationToken); 153return hubConnection.SendCoreAsync(methodName, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7 }, cancellationToken); 175return hubConnection.SendCoreAsync(methodName, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8 }, cancellationToken); 198return hubConnection.SendCoreAsync(methodName, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 }, cancellationToken); 222return hubConnection.SendCoreAsync(methodName, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10 }, cancellationToken);
Microsoft.AspNetCore.SignalR.Client.Tests (5)
HubConnectionTests.cs (3)
855mockConnection.Setup(c => c.SendCoreAsync(It.IsAny<string>(), It.IsAny<object[]>(), It.IsAny<CancellationToken>())).Returns(() => Task.CompletedTask); 867await hubConnection.SendCoreAsync("test2", Array.Empty<object>(), default); 876mockConnection.Verify(c => c.SendCoreAsync("test2", Array.Empty<object>(), It.IsAny<CancellationToken>()), Times.Once);
HubServerProxyGeneratorTests.cs (2)
222.Setup(x => x.SendCoreAsync( 228.Setup(x => x.SendCoreAsync(
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
HubConnectionSendBenchmark.cs (1)
93return _hubConnection.SendCoreAsync("Dummy", _arguments);