13 implementations of SendCoreAsync
Microsoft.AspNetCore.Components.Server (1)
Circuits\CircuitClientProxy.cs (1)
38public Task SendCoreAsync(string method, object[] args, CancellationToken cancellationToken = default)
Microsoft.AspNetCore.SignalR.Core (12)
Internal\HubCallerClients.cs (2)
113public Task SendCoreAsync(string method, object?[] args, CancellationToken cancellationToken = default) 144public Task SendCoreAsync(string method, object?[] args, CancellationToken cancellationToken = default)
Internal\NonInvokingSingleClientProxy.cs (1)
17public Task SendCoreAsync(string method, object?[] args, CancellationToken cancellationToken = default) =>
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)
16 references to SendCoreAsync
Microsoft.AspNetCore.Components.Server (1)
Circuits\CircuitClientProxy.cs (1)
45return Client.SendCoreAsync(method, args, 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);
Internal\DynamicClientProxy.cs (1)
21result = _clientProxy.SendCoreAsync(binder.Name, args!);
Internal\HubCallerClients.cs (2)
115return _proxy.SendCoreAsync(method, args, cancellationToken); 146return _proxy.SendCoreAsync(method, args, cancellationToken);
Internal\NonInvokingSingleClientProxy.cs (1)
18_clientProxy.SendCoreAsync(method, args, cancellationToken);