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

MsForward() public method

public MsForward ( byte buf, int start, int end ) : System
buf byte
start int
end int
return System
    public MsForward(byte[] buf, int start, int end)
      : base(buf, start, end) {
      addr=new byte[_length-3];
      Buffer.BlockCopy(buf, start+3, addr, 0, _length-3);
      msg=MsMessage.Parse(buf, start+_length, end);
    }
    public override byte[] GetBytes() {

Same methods

MsForward::MsForward ( byte addr, MsMessage msg ) : System