| 123456789101112131415161718192021222324252627282930313233343536373839 |
- using System.Collections.Generic;
- namespace MQTTnet.Packets
- {
- public class MqttConnAckPacketProperties
- {
- public uint? SessionExpiryInterval { get; set; }
- public ushort? ReceiveMaximum { get; set; }
- public bool? RetainAvailable { get; set; }
- public uint? MaximumPacketSize { get; set; }
- public string AssignedClientIdentifier { get; set; }
- public ushort? TopicAliasMaximum { get; set; }
- public string ReasonString { get; set; }
- public List<MqttUserProperty> UserProperties { get; set; }
- public bool? WildcardSubscriptionAvailable { get; set; }
- public bool? SubscriptionIdentifiersAvailable { get; set; }
- public bool? SharedSubscriptionAvailable { get; set; }
- public ushort? ServerKeepAlive { get; set; }
- public string ResponseInformation { get; set; }
- public string ServerReference { get; set; }
- public string AuthenticationMethod { get; set; }
- public byte[] AuthenticationData { get; set; }
- }
- }
|