MqttConnectPacketProperties.cs 705 B

123456789101112131415161718192021222324252627
  1. using System.Collections.Generic;
  2. namespace MQTTnet.Packets
  3. {
  4. public class MqttConnectPacketProperties
  5. {
  6. public uint? WillDelayInterval { get; set; }
  7. public uint? SessionExpiryInterval { get; set; }
  8. public string AuthenticationMethod { get; set; }
  9. public byte[] AuthenticationData { get; set; }
  10. public bool? RequestProblemInformation { get; set; }
  11. public bool? RequestResponseInformation { get; set; }
  12. public ushort? ReceiveMaximum { get; set; }
  13. public ushort? TopicAliasMaximum { get; set; }
  14. public uint? MaximumPacketSize { get; set; }
  15. public List<MqttUserProperty> UserProperties { get; set; }
  16. }
  17. }