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

hi i have a service that is sending stuff to another service and today the sending service crashed with this error message: _Application: Mirsk.RSR.IBM.exe Framework Version: v4.0.30319 Description: The process...

@doghappy Would it be useful to isolate event reading task in separate long-time task? I mean update code in method `ConnectAsync(Uri uri)` from: ``` _ = ListenAsync(_listenToken.Token); ``` to ```...

hi how should I handle OnReconnectFailed and OnError? I it correct that the OnError is something that is send from the other end and not a indication of a specific...

After upgrading from `2.2.4` to either `2.3.0` or `2.3.1` I get this error `System.TypeLoadException: 'Method 'Serialize' in type 'SocketIOClient.Newtonsoft.Json.NewtonsoftJsonSerializer' from assembly 'SocketIOClient.Newtonsoft.Json, Version=2.2.1.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.'`...

hi using this method to send a sting, corrupts the received message with strange structure. public Task EmitAsync(string eventName, CancellationToken cancellationToken, params object[] data)

Hey, thank you for your great work! I came upon a problem, which gave me some headaches: When testing with dotnet core 3.1, everything was working fine. When I switched...

Hi, using an EIO3 (socket.io 2.x) server with v2.2.0+ results in no events ever getting fired although you can see Websocket messages arriving in Wireshark. I've bisected the package versions...

Hello, we are using this library to implement the collaboration feature of our VR app (Unity-Quest). We have a manager that 15 times a second, in the update/tick method, gathers...

UnityEngine.UnityException: GetComponentFastPath can only be called from the main thread. Constructors and field initializers will be executed from the loading thread when loading a scene. Don't use this function in...

Is there a way to determine the current progress state of a long-running EmitAsync operation?