v9.8.2018.0605 由DataReader直接映射实体列表,以支持netstandard的MySql和SQLite,且提升性能
大石头
authored at
2018-06-05 00:45:23
X
using System;
using NewLife.Data;
namespace NewLife.Net.MQTT.Packets
{
/// <summary>连接包</summary>
public sealed class ConnectPacket : DataPacket
{
/// <summary>包类型</summary>
public override PacketType PacketType => PacketType.CONNECT;
public String ProtocolName { get; set; }
public Int32 ProtocolLevel { get; set; }
public Boolean CleanSession { get; set; }
public Boolean HasWill { get; set; }
public QualityOfService WillQualityOfService { get; set; }
public Boolean WillRetain { get; set; }
public Boolean HasPassword { get; set; }
public Boolean HasUsername { get; set; }
public Int32 KeepAliveInSeconds { get; set; }
public String Username { get; set; }
public String Password { get; set; }
public String ClientId { get; set; }
public String WillTopicName { get; set; }
public Packet WillMessage { get; set; }
}
}
|