You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MqttQualityOfServiceLevel.cs 170 B

преди 7 години
123456789
  1. namespace MQTTnet.Protocol
  2. {
  3. public enum MqttQualityOfServiceLevel
  4. {
  5. AtMostOnce = 0x00,
  6. AtLeastOnce = 0x01,
  7. ExactlyOnce = 0x02
  8. }
  9. }