29 lines
961 B
C#
29 lines
961 B
C#
// ********************************************************************************
|
|
// 文件名字: S2F50Handler
|
|
// 文件描述: S2F50Handler
|
|
// 开发人员: Hupe
|
|
// 创建时间: 2021/11/2 0:08
|
|
//
|
|
// 更新历史:
|
|
// + 创建 S2F50Handler.cs 文件. by Michael @2019/11/8 0:08
|
|
// ********************************************************************************
|
|
using Glorysoft.SECS.EQP.Common;
|
|
using Glorysoft.SECS.EQP.Message;
|
|
using Glorysoft.SECS.EQP.Utilities;
|
|
using Glorysoft.SECSwell;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System;
|
|
using ARI.EAP.HOST;
|
|
|
|
namespace Glorysoft.SECS.EQP.Handlers
|
|
{
|
|
public class S2F50Handler : ISECSMessageHandler
|
|
{
|
|
public void Execute(SECSContext context, SECSTransaction trans, SECSErrors err, string errmsg)
|
|
{
|
|
Global.MF.addlog(trans, LoggerService.Receive, "Enhanced Remote Command", 1);
|
|
LoggerService.SECSLogger.Info(trans.Secondary);
|
|
}
|
|
}
|
|
} |