Communicating with a socket.io server via c#

There is a project on codeplex ( NuGet as well ) that is a C# client for socket.io.
(I am the author of this project – so I’m biased) I couldn’t find exactly what I needed in a client, so I built it and released it back into the open.

Example client style:

socket.On("news", (data) =>    {
Console.WriteLine(data);
});

Leave a Comment