MqttPropertyID.cs 975 B

123456789101112131415161718192021222324252627282930313233
  1. namespace MQTTnet.Protocol
  2. {
  3. public enum MqttPropertyId
  4. {
  5. PayloadFormatIndicator = 1,
  6. MessageExpiryInterval = 2,
  7. ContentType = 3,
  8. ResponseTopic = 8,
  9. CorrelationData = 9,
  10. SubscriptionIdentifier = 11,
  11. SessionExpiryInterval = 17,
  12. AssignedClientIdentifier = 18,
  13. ServerKeepAlive = 19,
  14. AuthenticationMethod = 21,
  15. AuthenticationData = 22,
  16. RequestProblemInformation = 23,
  17. WillDelayInterval = 24,
  18. RequestResponseInformation = 25,
  19. ResponseInformation = 26,
  20. ServerReference = 28,
  21. ReasonString = 31,
  22. ReceiveMaximum = 33,
  23. TopicAliasMaximum = 34,
  24. TopicAlias = 35,
  25. MaximumQoS = 36,
  26. RetainAvailable = 37,
  27. UserProperty = 38,
  28. MaximumPacketSize = 39,
  29. WildcardSubscriptionAvailable = 40,
  30. SubscriptionIdentifiersAvailable = 41,
  31. SharedSubscriptionAvailable = 42
  32. }
  33. }