socket.io-client-csharp icon indicating copy to clipboard operation
socket.io-client-csharp copied to clipboard

socket.io-client implemention for .NET

Results 111 socket.io-client-csharp issues
Sort by recently updated
recently updated
newest added

Hello, at Electron.NET we would like to use this library here as a new basis. Unfortunately, we have some difficulties here that we cannot easily determine. We get a connection...

hey, the documentation says that you can simply replace the serializer with Newtonsoft. This also works with data that I submit with Newtonsoft Json via the Emit method without any...

We can check `IsConnected` and `IsDisconnected`, but its nice to know if `IsConnecting` as well! Currently there is a 'gap' in information. Could we expose `_isConnectCoreRunning` to represent 'IsConnecting' state?

Hey, im developing wpf game that connect to nodejs server via websocket protocol. Now, the events working good until the game start and then the On events not working. For...

I've written a bit of code to connect to my machine and just make sure it can connect to different URLs. So far, I've had no success using different SocketAPI's...

Hi, on Raspberry Pi 4 , Arch64, Linux Debian 11, .NET 6, we have a problem with getting rise OnDisconnected event. Steps to reproduce 1. start application with disconnected network...

Has added in Net 6 which has STJ so no need for dependency Closes #344

ı can connect with price_changed but there is no connected - OnDisconnected onError etc socket.On("price_changed", response => { Console.WriteLine("price_changed VERİSİ " + response); this.Invoke((MethodInvoker)delegate { textBox1.Text = "price_changed VERİSİ "...

Hi Team, I've added this project to [China .NET OSS Ranking list](https://github.com/dotnet-cn/OSSRanking). Thank you for your contribution to OSS .NET community.

```cs using System; using System.Threading.Tasks; using System.Text; using System.Net; using System.Net.Sockets; using System.Collections; using System.Collections.Generic; using UnityEngine; public class Connection: MonoBehaviour { public void Start() { var client = new...