app.UseEndpoints(endpoints => { endpoints.MapHub<SignalHub>("/signalclient"); }); // SignalHub inherits from Hub // added this in ConfigureServices services.AddSignalR(); // I get this via di in my Controller IHubContext<SignalHub> hubContext // I issue this call from my Controller action this.hubContext.Clients.All.SendAsync("ReceivePostgresNotification",e); // which seems to execute ok
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)