<pre> const socket = io('https://mysocketio.com/', { timeout: 2000, forceNew: true, path: '/socket/', query: { token: "AbcD" }, transports: ['websocket'], reconnection: true }); socket.on('connect', function () { alert('connected'); }); socket.on('change', function (liveData) { alert(liveData); }); socket.on('disconnect', function () { alert('disconnect'); });
The above code is working fine. Now my client wants to do the same in desktop application too. So please help me to show real time data in to desktop application using C# or VB.
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)