MqttClientSubscribeResultCode.cs 527 B

123456789101112131415161718
  1. namespace MQTTnet.Client.Subscribing
  2. {
  3. public enum MqttClientSubscribeResultCode
  4. {
  5. GrantedQoS0 = 0,
  6. GrantedQoS1 = 1,
  7. GrantedQoS2 = 2,
  8. UnspecifiedError = 128,
  9. ImplementationSpecificError = 131,
  10. NotAuthorized = 135,
  11. TopicFilterInvalid = 143,
  12. PacketIdentifierInUse = 145,
  13. QuotaExceeded = 151,
  14. SharedSubscriptionsNotSupported = 158,
  15. SubscriptionIdentifiersNotSupported = 161,
  16. WildcardSubscriptionsNotSupported = 162
  17. }
  18. }