13 lines
237 B
C#
13 lines
237 B
C#
namespace MxGateway.Server.Sessions;
|
|
|
|
public enum SessionManagerErrorCode
|
|
{
|
|
SessionNotFound,
|
|
SessionNotReady,
|
|
EventSubscriberAlreadyActive,
|
|
EventQueueOverflow,
|
|
SessionLimitExceeded,
|
|
OpenFailed,
|
|
CloseFailed,
|
|
}
|