You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 20, 2022. It is now read-only.
Is the correct way to do this to pass the string in the Connect() method rather than in the URL?
socket = new SocketIOClient("http://mysocketioserver:1234");
socket.Connect("namespace");
And if so, do I also need to pass it when doing an Emit?
socket.Emit("message", args, "namespace", null)
Normally I Emit a "joinRoom" message after connecting with a UID as the args and then I'm able to receive messages but not sure what I'm doing wrong here. I get the "connect" message but none of the messages I'm expecting after that.