X13.Periphery.MsDhcpAck.GetBytes C# (CSharp) Метод

GetBytes() публичный Метод

public GetBytes ( ) : byte[]
Результат byte[]
    public override byte[] GetBytes() {
      base._length=(ushort)(5+_resp.Length);
      byte[] buf=base.GetBytes();
      buf[2]=_gwIdx;
      buf[3]=(byte)(_xId>>8);
      buf[4]=(byte)(_xId);
      Buffer.BlockCopy(_resp, 0, buf, 5, _resp.Length);
      return buf;
    }
  }