Is there a way to perform the operations I want to do on all clients in real-time without using SignalR, or how should I integrate SignalR? I’m getting a .NET 4.8 incompatibility error. Thank you in advance for your help.
Sure. Create a static manager class, fire a static event when the data needs to be updated. The clients simply attach to the static event. When fired they will all be invoked since events are multicast.
When handling the event make sure to use Apolicatio.Update() or RunInContext. You will find more info in the docs.
Please login first to submit.