X13.Periphery.MsDhcpReq.MsDhcpReq C# (CSharp) Method

MsDhcpReq() public method

public MsDhcpReq ( byte buf, int start, int end ) : System
buf byte
start int
end int
return System
    public MsDhcpReq(byte[] buf, int start, int end)
      : base(buf, start, end) {
      radius=buf[start+2];
      xId=(ushort)((buf[start+3]<<8) | buf[start+4]);
      hLen=buf.Skip(start+5).Take(end-start-5).ToArray();
    }
    public readonly byte radius;