You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
furkannkilicc
changed the title
Why ı can not connect ws ? there is now error - info...
Why there is no returning info onConnected -- OnDisconnected etc
Apr 10, 2024
Hi, what I mean is, even though I subscribed to the event, I can't see the other event for example "socket.OnConnected" not printing console .
And my other problem is disconnectAsync triggered on button but not closing connection data is still streaming
ı 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);
});
socket.OnError += (s, e) =>
{
Console.WriteLine(e);
};
socket.OnConnected += (s, e) =>
{
Console.Write("Connected " + socket.Namespace);
};
socket.OnDisconnected += (s, e) =>
{
Console.WriteLine("Socket disconnected");
};
The text was updated successfully, but these errors were encountered: