Difference between SendAsync and SendCoreAsync methods in SignalR Core?
Quoting @anurse from GitHub: Long story short: The Core methods should be ignored unless you really know what you’re doing. Short story long: We started with SendAsync, which takes an array of arguments to send: public void SendAsync(string method, object[] args); Clients.All.SendAsync(“Method”, new object[] { arg1, arg2, arg3 }); Obviously it’s a pain to have … Read more