コード例 #1
0
 public MBMsgRTU(byte nUnitID, MBFunctionType nFuncID, byte[] pMsgData)
     : base(nUnitID, nFuncID, pMsgData)
 {
 }
コード例 #2
0
 public MBMsgTCP(byte nUnitID, MBFunctionType nFuncID, byte[] pMsgData)
     : base(nUnitID, nFuncID, pMsgData)
 {
     ProtocolID = 0;
     Length     = (ushort)(pMsgData.Length + 2);
 }
コード例 #3
0
 protected void _QueMsg(byte nUnitID, MBFunctionType nFuncID, byte[] pMsgData)
 {
     _control.QueMsg(nUnitID, nFuncID, pMsgData, this);
 }