Enum SessionCloseReason
Why a session ended.
public enum SessionCloseReason : byte
Fields
ClientLeft = 0The client left cleanly, with
BYE.InternalError = 7The engine faulted while serving this session.
Kicked = 1The application asked for it, through Kick(ushort, string).
Lagging = 3The session fell too far behind to be worth serving.
LinkLost = 2The link went away without a goodbye.
ProtocolError = 5The client broke the protocol, or sent something the engine could not decode.
ServerShutdown = 6The server is shutting down.
Unacknowledged = 4The client stopped acknowledging.