13 lines
251 B
C#
13 lines
251 B
C#
namespace MxGateway.Worker.Bootstrap;
|
|
|
|
public enum WorkerExitCode
|
|
{
|
|
Success = 0,
|
|
UnexpectedFailure = 1,
|
|
InvalidArguments = 2,
|
|
InvalidProtocolVersion = 3,
|
|
MissingNonce = 4,
|
|
PipeConnectionFailed = 5,
|
|
ProtocolViolation = 6,
|
|
}
|