MqttConnAckPacketProperties.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System.Collections.Generic;
  2. namespace MQTTnet.Packets
  3. {
  4. public class MqttConnAckPacketProperties
  5. {
  6. public uint? SessionExpiryInterval { get; set; }
  7. public ushort? ReceiveMaximum { get; set; }
  8. public bool? RetainAvailable { get; set; }
  9. public uint? MaximumPacketSize { get; set; }
  10. public string AssignedClientIdentifier { get; set; }
  11. public ushort? TopicAliasMaximum { get; set; }
  12. public string ReasonString { get; set; }
  13. public List<MqttUserProperty> UserProperties { get; set; }
  14. public bool? WildcardSubscriptionAvailable { get; set; }
  15. public bool? SubscriptionIdentifiersAvailable { get; set; }
  16. public bool? SharedSubscriptionAvailable { get; set; }
  17. public ushort? ServerKeepAlive { get; set; }
  18. public string ResponseInformation { get; set; }
  19. public string ServerReference { get; set; }
  20. public string AuthenticationMethod { get; set; }
  21. public byte[] AuthenticationData { get; set; }
  22. }
  23. }