✅ SignalR in .Net 6 Web API
If i am configuring this in program.cs file
builder.Services.AddSignalR();
and app.MapHub<SignalRHub>("/signalr");
does this mean it can fire events at all time?
I have to keep sending the events to a angular client from a large file upload operation.
builder.Services.AddSignalR();
and app.MapHub<SignalRHub>("/signalr");
does this mean it can fire events at all time?
I have to keep sending the events to a angular client from a large file upload operation.