// ******************************************************************************** // 文件名字: Command.S1F13 // 文件描述: Command.S1F13 // 开发人员: Michael // 创建时间: 2019/11/8 0:08 // // 更新历史: // + 创建 Command.S1F13.cs 文件. by Michael @2019/11/8 0:08 // ******************************************************************************** using ARI.EAP.HOST; using Glorysoft.SECS.EQP.Utilities; using System; using System.Windows.Forms; namespace Glorysoft.SECS.EQP.Commands { public static partial class Command { public static void S5F5Command(object tag = null) { try { var trans = SimulatorInfo.Instance.Context?.GetTransaction(5, 5, "S5F5"); trans.Tag = tag; SimulatorInfo.Instance.Context?.SendMessage(trans); Global.MF.addlog(LoggerService.HtoE, $"S{trans.Primary.Stream}F{trans.Primary.Function}", LoggerService.Send, trans.Description, "=" + trans.Primary.SystemBytes.ToString()); LoggerService.SECSLogger.Info(trans.Primary); } catch(Exception e) { LoggerService.SYSLogger.Error(e); } } } }