35 lines
1.2 KiB
C#
35 lines
1.2 KiB
C#
// ********************************************************************************
|
|
// 文件名字: S2F42Handler
|
|
// 文件描述: S2F42Handler
|
|
// 开发人员: Michael
|
|
// 创建时间: 2019/11/8 0:08
|
|
//
|
|
// 更新历史:
|
|
// + 创建 S2F42Handler.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;
|
|
|
|
namespace Glorysoft.SECS.EQP.Handlers
|
|
{
|
|
public class S2F42Handler : ISECSMessageHandler
|
|
{
|
|
public void Execute(SECSContext context, SECSTransaction trans, SECSErrors err, string errmsg)
|
|
{
|
|
SECSMessage reply = trans.Secondary;
|
|
|
|
S2F42Item item = new S2F42Item();
|
|
item.HCACK = reply.Root.Item(1).Value.To<byte[]>().FirstOrDefault();
|
|
//item.CPNAME = reply.Root.Item(2).Item(1).Item(1).Value.ToString();
|
|
//item.CPACK = reply.Root.Item(2).Item(1).Item(2).Value;
|
|
|
|
var scenario = trans.Tag as Scenario;
|
|
Thread.Sleep(500);
|
|
scenario.ExecuteNextStep();
|
|
}
|
|
}
|
|
} |