13 implementations of SendCoreAsync
Microsoft.AspNetCore.Components.Server (1)
Circuits\CircuitClientProxy.cs (1)
38
public Task
SendCoreAsync
(string method, object[] args, CancellationToken cancellationToken = default)
Microsoft.AspNetCore.SignalR.Core (12)
Internal\HubCallerClients.cs (2)
113
public Task
SendCoreAsync
(string method, object?[] args, CancellationToken cancellationToken = default)
144
public Task
SendCoreAsync
(string method, object?[] args, CancellationToken cancellationToken = default)
Internal\NonInvokingSingleClientProxy.cs (1)
17
public Task
SendCoreAsync
(string method, object?[] args, CancellationToken cancellationToken = default) =>
Internal\Proxies.cs (9)
19
public Task
SendCoreAsync
(string method, object?[] args, CancellationToken cancellationToken = default)
36
public Task
SendCoreAsync
(string method, object?[] args, CancellationToken cancellationToken = default)
55
public Task
SendCoreAsync
(string method, object?[] args, CancellationToken cancellationToken = default)
72
public Task
SendCoreAsync
(string method, object?[] args, CancellationToken cancellationToken = default)
93
public Task
SendCoreAsync
(string method, object?[] args, CancellationToken cancellationToken = default)
108
public Task
SendCoreAsync
(string method, object?[] args, CancellationToken cancellationToken = default)
125
public Task
SendCoreAsync
(string method, object?[] args, CancellationToken cancellationToken = default)
142
public Task
SendCoreAsync
(string method, object?[] args, CancellationToken cancellationToken = default)
160
public Task
SendCoreAsync
(string method, object?[] args, CancellationToken cancellationToken = default)
16 references to SendCoreAsync
Microsoft.AspNetCore.Components.Server (1)
Circuits\CircuitClientProxy.cs (1)
45
return Client.
SendCoreAsync
(method, args, cancellationToken);
Microsoft.AspNetCore.SignalR.Core (15)
ClientProxyExtensions.cs (11)
24
return clientProxy.
SendCoreAsync
(method, Array.Empty<object>(), cancellationToken);
39
return clientProxy.
SendCoreAsync
(method, new[] { arg1 }, cancellationToken);
55
return clientProxy.
SendCoreAsync
(method, new[] { arg1, arg2 }, cancellationToken);
72
return clientProxy.
SendCoreAsync
(method, new[] { arg1, arg2, arg3 }, cancellationToken);
90
return clientProxy.
SendCoreAsync
(method, new[] { arg1, arg2, arg3, arg4 }, cancellationToken);
109
return clientProxy.
SendCoreAsync
(method, new[] { arg1, arg2, arg3, arg4, arg5 }, cancellationToken);
129
return clientProxy.
SendCoreAsync
(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6 }, cancellationToken);
150
return clientProxy.
SendCoreAsync
(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7 }, cancellationToken);
172
return clientProxy.
SendCoreAsync
(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8 }, cancellationToken);
195
return clientProxy.
SendCoreAsync
(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 }, cancellationToken);
219
return clientProxy.
SendCoreAsync
(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10 }, cancellationToken);
Internal\DynamicClientProxy.cs (1)
21
result = _clientProxy.
SendCoreAsync
(binder.Name, args!);
Internal\HubCallerClients.cs (2)
115
return _proxy.
SendCoreAsync
(method, args, cancellationToken);
146
return _proxy.
SendCoreAsync
(method, args, cancellationToken);
Internal\NonInvokingSingleClientProxy.cs (1)
18
_clientProxy.
SendCoreAsync
(method, args, cancellationToken);