25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MqttQualityOfServiceLevel.cs 170 B

123456789
  1. namespace MQTTnet.Protocol
  2. {
  3. public enum MqttQualityOfServiceLevel
  4. {
  5. AtMostOnce = 0x00,
  6. AtLeastOnce = 0x01,
  7. ExactlyOnce = 0x02
  8. }
  9. }