mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-15 21:26:10 +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";
|
|||
|
|
}
|
|||
|
|
}
|