MqttClientConnectResultCode.cs 811 B

12345678910111213141516171819202122232425262728
  1. namespace MQTTnet.Client.Connecting
  2. {
  3. public enum MqttClientConnectResultCode
  4. {
  5. Success = 0,
  6. UnspecifiedError = 128,
  7. MalformedPacket = 129,
  8. ProtocolError = 130,
  9. ImplementationSpecificError = 131,
  10. UnsupportedProtocolVersion = 132,
  11. ClientIdentifierNotValid = 133,
  12. BadUserNameOrPassword = 134,
  13. NotAuthorized = 135,
  14. ServerUnavailable = 136,
  15. ServerBusy = 137,
  16. Banned = 138,
  17. BadAuthenticationMethod = 140,
  18. TopicNameInvalid = 144,
  19. PacketTooLarge = 149,
  20. QuotaExceeded = 151,
  21. PayloadFormatInvalid = 153,
  22. RetainNotSupported = 154,
  23. QoSNotSupported = 155,
  24. UseAnotherServer = 156,
  25. ServerMoved = 157,
  26. ConnectionRateExceeded = 159
  27. }
  28. }