MqttRetainHandling.cs 193 B

123456789
  1. namespace MQTTnet.Protocol
  2. {
  3. public enum MqttRetainHandling
  4. {
  5. SendAtSubscribe = 0,
  6. SendAtSubscribeIfNewSubscriptionOnly = 1,
  7. DoNotSendOnSubscribe = 2
  8. }
  9. }