When I connect with Quobject.SocketIoClientDotNet.Client.IO.Socket client, it connects and immediately disconnects the client. Every second it repeats this. What is the reason? How can I keep alive connection?
var socket = IO.Socket("http://127.0.0.1:3000");
socket.On(Quobject.SocketIoClientDotNet.Client.Socket.EVENT_CONNECT, (fn) =>
{
socket.Emit("partInfo");
});