X13.Periphery.MsDevice.SendGw C# (CSharp) Method

SendGw() public method

public SendGw ( byte addr, MsMessage msg ) : void
addr byte
msg MsMessage
return void
    public void SendGw(byte[] addr, MsMessage msg) {
      if(_gate!=null && addr!=null) {
        _gate.SendGw(this, new MsForward(addr, msg));
      }
    }
    public void SendGw(MsDevice dev, MsMessage msg) {

Same methods

MsDevice::SendGw ( MsDevice dev, MsMessage msg ) : void