16 implementations of SendCoreAsync
Microsoft.AspNetCore.Components.Server (1)
Microsoft.AspNetCore.SignalR.Core (12)
Internal\Proxies.cs (9)
19public Task SendCoreAsync(string method, object?[] args, CancellationToken cancellationToken = default)
36public Task SendCoreAsync(string method, object?[] args, CancellationToken cancellationToken = default)
55public Task SendCoreAsync(string method, object?[] args, CancellationToken cancellationToken = default)
72public Task SendCoreAsync(string method, object?[] args, CancellationToken cancellationToken = default)
93public Task SendCoreAsync(string method, object?[] args, CancellationToken cancellationToken = default)
108public Task SendCoreAsync(string method, object?[] args, CancellationToken cancellationToken = default)
125public Task SendCoreAsync(string method, object?[] args, CancellationToken cancellationToken = default)
142public Task SendCoreAsync(string method, object?[] args, CancellationToken cancellationToken = default)
160public Task SendCoreAsync(string method, object?[] args, CancellationToken cancellationToken = default)
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
Microsoft.AspNetCore.SignalR.Tests (2)
31 references to SendCoreAsync
Microsoft.AspNetCore.Components.Server (1)
Microsoft.AspNetCore.Components.Server.Tests (15)
Circuits\ComponentHubTest.cs (7)
34mockClientProxy.Verify(m => m.SendCoreAsync("JS.Error", It.Is<object[]>(s => Regex.Match((string)s[0], errorMessage).Success), It.IsAny<CancellationToken>()), Times.Once());
45mockClientProxy.Verify(m => m.SendCoreAsync("JS.Error", new[] { errorMessage }, It.IsAny<CancellationToken>()), Times.Once());
56mockClientProxy.Verify(m => m.SendCoreAsync("JS.Error", new[] { errorMessage }, It.IsAny<CancellationToken>()), Times.Once());
67mockClientProxy.Verify(m => m.SendCoreAsync("JS.Error", new[] { errorMessage }, It.IsAny<CancellationToken>()), Times.Once());
78mockClientProxy.Verify(m => m.SendCoreAsync("JS.Error", new[] { errorMessage }, It.IsAny<CancellationToken>()), Times.Once());
89mockClientProxy.Verify(m => m.SendCoreAsync("JS.Error", new[] { errorMessage }, It.IsAny<CancellationToken>()), Times.Once());
100mockClientProxy.Verify(m => m.SendCoreAsync("JS.Error", new[] { errorMessage }, It.IsAny<CancellationToken>()), Times.Once());
Circuits\RemoteRendererTest.cs (6)
141initialClient.Setup(c => c.SendCoreAsync(It.IsAny<string>(), It.IsAny<object[]>(), It.IsAny<CancellationToken>()))
154client.Setup(c => c.SendCoreAsync(It.IsAny<string>(), It.IsAny<object[]>(), It.IsAny<CancellationToken>()))
212onlineClient.Setup(c => c.SendCoreAsync(It.IsAny<string>(), It.IsAny<object[]>(), It.IsAny<CancellationToken>()))
275onlineClient.Setup(c => c.SendCoreAsync(It.IsAny<string>(), It.IsAny<object[]>(), It.IsAny<CancellationToken>()))
329onlineClient.Setup(c => c.SendCoreAsync(It.IsAny<string>(), It.IsAny<object[]>(), It.IsAny<CancellationToken>()))
386onlineClient.Setup(c => c.SendCoreAsync(It.IsAny<string>(), It.IsAny<object[]>(), It.IsAny<CancellationToken>()))
Microsoft.AspNetCore.SignalR.Core (15)
ClientProxyExtensions.cs (11)
24return clientProxy.SendCoreAsync(method, Array.Empty<object>(), cancellationToken);
39return clientProxy.SendCoreAsync(method, new[] { arg1 }, cancellationToken);
55return clientProxy.SendCoreAsync(method, new[] { arg1, arg2 }, cancellationToken);
72return clientProxy.SendCoreAsync(method, new[] { arg1, arg2, arg3 }, cancellationToken);
90return clientProxy.SendCoreAsync(method, new[] { arg1, arg2, arg3, arg4 }, cancellationToken);
109return clientProxy.SendCoreAsync(method, new[] { arg1, arg2, arg3, arg4, arg5 }, cancellationToken);
129return clientProxy.SendCoreAsync(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6 }, cancellationToken);
150return clientProxy.SendCoreAsync(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7 }, cancellationToken);
172return clientProxy.SendCoreAsync(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8 }, cancellationToken);
195return clientProxy.SendCoreAsync(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 }, cancellationToken);
219return clientProxy.SendCoreAsync(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10 }, cancellationToken);