mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 21:24:00 +00:00
12 lines
415 B
C#
12 lines
415 B
C#
namespace SocketIOClient
|
|
{
|
|
public class DisconnectReason
|
|
{
|
|
public static string IOServerDisconnect = "io server disconnect";
|
|
public static string IOClientDisconnect = "io client disconnect";
|
|
public static string PingTimeout = "ping timeout";
|
|
public static string TransportClose = "transport close";
|
|
public static string TransportError = "transport error";
|
|
}
|
|
}
|