Push data to client using SignalR vs WCF?

前端 未结 5 1457
日久生厌
日久生厌 2020-12-29 21:54

I have one WPF client-server application. Now I have scenario like client will connect to server and server will push data to client periodically. I am bit confused about wh

5条回答
  •  长发绾君心
    2020-12-29 22:22

    SignalR can easily be used now with multiple clients from javascript, .NET both WinForms and WPF, and can even be used with a C++ client; Using a self hosted .NET signalr server (OWIN) is really nice way to have a standalone server that pushes / receives / broadcasts to multiple clients. The only thing that may be easier is ZeroMQ using its publish subscribe methodology.

提交回复
热议问题