I\'m interested in running a long process, I want to update the UI as soon as results start coming in and not wait for it to finish.
How would I go about this? I\'ve
I was trying to solve something similar (reporting real-time progress from a long running server operation back to the client) recently and it turned out SignalR is a perfect fit for this situation.
Basically it is a library wrapping long-polling and Web Sockets, using (transparently) whatever is available on server and client.
I only have good experience with it so far.