Exemplo n.º 1
0
 // Methods
 public BnetLogonResponse(byte[] data) : base(data)
 {
     this.result = (BnetLogonResult)BitConverter.ToUInt32(data, 3);
     if (data.Length > 7)
     {
         this.reason = ByteConverter.GetNullString(data, 7);
     }
 }
Exemplo n.º 2
0
 // Methods
 public BnetLogonResponse(byte[] data)
     : base(data)
 {
     this.result = (BnetLogonResult) BitConverter.ToUInt32(data, 3);
     if (data.Length > 7)
     {
     this.reason = ByteConverter.GetNullString(data, 7);
     }
 }