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

I have experienced problems where the socket connects properly, but there is no session ID. This doesn't happen every time I connect, and typically it happens after the socket has...

Hello! I would like to ask for help. What could be the problem? Unity Client ``` using UnityEngine; using SocketIOClient; public class NetworkClient : MonoBehaviour { // Start is called...

I import this package to my PCL project and Droid but when i start program i see this error: System.NullReferenceException: 'Object reference not set to an instance of an object.'

Fiddler 4 shows that the client has in fact received a "message send" event ![image](https://user-images.githubusercontent.com/28631585/160292346-3d3d9a9c-530b-4a8f-a155-12bd9a16857b.png) However nothing has printed to console ![image](https://user-images.githubusercontent.com/28631585/160292352-b93a23d2-f296-4907-9a2a-8cdc3655f86e.png) Despite onAny being setup to print that a...

正常与服务端连接后,我调用DisconnectAsync,app 就crash了, 版本号是:2.3.1

关于SocketClient SocketIO.ConnectAsync 关于这方法.如图所示位置的throw. ![20220311150353](https://user-images.githubusercontent.com/17672604/157821149-8b631775-f517-4e0a-8e24-56d818190301.png) 问题Crash: 复现步骤: 1. PC连接手机热点. 手机打开流量 2. PC 运行SocketClient Demo 3. Socket 连接成功 4. 手机关闭流量 5. Socket 会自动重连. `SocketIO.InvokeDisconnect: await ConnectAsync().ConfigureAwait(false);` 6. 等待超时 7. 在如图所示位置会产生异常 8. 程序Crash...

Unity 2020 socket.io-client-csharp - v3.0.5 ``` using SocketIOClient; ..... var client = new SocketIO(this.API_ENDPOINT, new SocketIOOptions { ExtraHeaders = new Dictionary { {"Authorization", $"bearer {jwe}"}, {"SessionID", sessionId } } });...

hi today we have had a breakdown leaving us with the following unhandled exception in the event viewer: _Application: Mirsk.RSR.IBM.exe Framework Version: v4.0.30319 Description: The process was terminated due to...

Hello, The [README](https://github.com/doghappy/socket.io-client-csharp/blob/master/README.md) states the following: > SocketIOClient v3.x supports http polling, but if websocket is available, the library will choose to use websocket. If you want to use http...

So i created a C# Console Application for Monitoring purposes that connects to my SocketIO Server. After 5-10 Minutes the Connection closed (Disconnect Event Triggered Only on Server Side) The...