6 implementations of InvokeCoreAsync
Microsoft.AspNetCore.Components.Server (1)
Microsoft.AspNetCore.SignalR.Core (4)
Microsoft.AspNetCore.SignalR.Tests (1)
22 references to InvokeCoreAsync
Microsoft.AspNetCore.Components.Server (1)
Microsoft.AspNetCore.Components.Server.Tests (9)
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);