using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Paho.MqttDotnet { /// /// 表示mqtt消息质量等级 /// public enum MqttQoS : byte { /// /// 最多分发一次 /// AtMostOnce = 0, /// /// 至少分发一次 /// AtLeastOnce = 1, /// /// 仅分发一次 /// ExactlyOnce = 2, } }