SocketIOSharp icon indicating copy to clipboard operation
SocketIOSharp copied to clipboard

C# implementation of Socket.IO protocol revision 4 client and server.

Results 27 SocketIOSharp issues
Sort by recently updated
recently updated
newest added

Looks like EngineIOServerOption has a constructor paramter: bool AllowEIO3 That is missing in the SocketIOServerOption constructor that is trying to inherit from/call. This is all from the latest nuget packages...

There are several tickets open and it doesn't seem to be maintained anymore. Problems like reconnect are not being discussed or even reacted to by the repository owner.

클라이언트 샘플을 실행시켰는데 아래와 같은 에러가 발생하는데 어떤 이유인지 알려주실수 있나요? I ran a client sample, but could you tell me the reason for the error as below? Input /exit...

bug
enhancement

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 9.0.1 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies
.NET

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 9.0.1 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies
.NET

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies
.NET

Hey, I am trying to mimic a socket io server written in JS. Ever since the SocketIO protocol v3 CORS (Cross-Origin-Resource-Sharing) is disabled by default (see https://socket.io/docs/v4/handling-cors/). I have looked...

I'm using SocketIOSharp.Server and I can't find a way to use my local machine's address 192.168.1.104, how do I use my hostname or domain? Help here please `SocketIOServer server =...

I have not found a solution to this problem (https://socket.io/docs/v3/namespaces/index.html). For example socket.io client send: io.of("/orders").on("connection", (socket) => { ...... Can I pick up a message from this namespace?

Reason: When you use url like http://localhost:3000/ the socket.io client will create a websocket transport url like ws://localhost:3000/socket.io. It will work fine. But when you have url like http://localhost:3000/march, then...