5 implementations of InvokeCoreAsync
Microsoft.AspNetCore.SignalR.Core (4)
Internal\HubCallerClients.cs (2)
108
public Task<T>
InvokeCoreAsync
<T>(string method, object?[] args, CancellationToken cancellationToken = default)
130
public async Task<T>
InvokeCoreAsync
<T>(string method, object?[] args, CancellationToken cancellationToken = default)
Internal\NonInvokingSingleClientProxy.cs (1)
20
public Task<T>
InvokeCoreAsync
<T>(string method, object?[] args, CancellationToken cancellationToken = default) =>
Internal\Proxies.cs (1)
165
public Task<T>
InvokeCoreAsync
<T>(string method, object?[] args, CancellationToken cancellationToken = default)
Microsoft.AspNetCore.SignalR.Tests (1)
Internal\TypedClientBuilderTests.cs (1)
369
public async Task<T>
InvokeCoreAsync
<T>(string method, object[] args, CancellationToken cancellationToken = default)
12 references to InvokeCoreAsync
Microsoft.AspNetCore.SignalR.Core (12)
ClientProxyExtensions.cs (11)
232
return clientProxy.
InvokeCoreAsync
<T>(method, Array.Empty<object>(), cancellationToken);
246
return clientProxy.
InvokeCoreAsync
<T>(method, new[] { arg1 }, cancellationToken);
261
return clientProxy.
InvokeCoreAsync
<T>(method, new[] { arg1, arg2 }, cancellationToken);
277
return clientProxy.
InvokeCoreAsync
<T>(method, new[] { arg1, arg2, arg3 }, cancellationToken);
294
return clientProxy.
InvokeCoreAsync
<T>(method, new[] { arg1, arg2, arg3, arg4 }, cancellationToken);
312
return clientProxy.
InvokeCoreAsync
<T>(method, new[] { arg1, arg2, arg3, arg4, arg5 }, cancellationToken);
331
return clientProxy.
InvokeCoreAsync
<T>(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6 }, cancellationToken);
351
return clientProxy.
InvokeCoreAsync
<T>(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7 }, cancellationToken);
372
return clientProxy.
InvokeCoreAsync
<T>(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8 }, cancellationToken);
394
return clientProxy.
InvokeCoreAsync
<T>(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9 }, cancellationToken);
417
return clientProxy.
InvokeCoreAsync
<T>(method, new[] { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10 }, cancellationToken);
Internal\HubCallerClients.cs (1)
140
var result = await _proxy.
InvokeCoreAsync
<T>(method, args, cancellationToken);