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