X13.Periphery.MsDevice.MsGSerial.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) {
        msg.GetBytes();
        lock(_sendQueue) {
          _sendQueue.Enqueue(msg);
        }
      }
      public void SendGw(MsDevice dev, MsMessage msg) {

Same methods

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