示例#1
0
 public static _PACKET_USER_QCMD_REG PACKET_USER_QCMD_REG(_DTO_account dto)
 {
     return(new _PACKET_USER_QCMD_REG(dto));
 }
示例#2
0
 public static void CALL_USER_QCMD_REG(this INetTransmitter transmitter, _DTO_account dto)
 {
     transmitter.Send(new _PACKET_USER_QCMD_REG(dto));
 }
示例#3
0
 public static _PACKET_USER_QCMD_LOGIN PACKET_USER_QCMD_LOGIN(_DTO_account dto)
 {
     return(new _PACKET_USER_QCMD_LOGIN(dto));
 }
 protected override void InternalDeserialize(StreamBuffer buffer)
 {
     base.InternalDeserialize(buffer);
     this.dto = new _DTO_account();
     this.dto.Deserialize(buffer);
 }
 public _PACKET_USER_QCMD_REG(string account, string password) : base(101, 1)
 {
     this.dto = new _DTO_account(account, password);
 }
 public _PACKET_USER_QCMD_REG(_DTO_account dto) : base(101, 1)
 {
     this.dto = dto;
 }
 public _PACKET_USER_QCMD_LOGIN(_DTO_account dto) : base(101, 0)
 {
     this.dto = dto;
 }