using CFX;
using Sln.Iot.Serilog;
namespace Sln.Iot.CFX.Event
{
///
/// 终端节点断连事件
///
public class EndpointShuttingDownEvent
{
///
/// 数据封装处理
///
///
public CFXMessage Handle()
{
CFXMessage eve = null;
try
{
eve = new EndpointShuttingDown()
{
CFXHandle = "CFX.S07.E022012702",
};
}
catch (Exception e)
{
SerilogHelper.Instance.Error("终端节点连接事件数据封装异常", e);
}
return eve;
}
}
}