socket.io-client-csharp
socket.io-client-csharp copied to clipboard
stop all
i have bugs this lib stop all after a few minutes
Which version do you use and how to reproduce it?
2.1.2
I have a lot of requests. But all of a sudden it stops even though the socket is active
you code
client.On("event", response =>
{
//code
});
try code
client.On("event", response =>
{
try
{
//code
}
catch (Exception e)
{
Console.WriteLine(e);
}
});
good luck