generated from wenjy/Sln.Iot
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
597 B
C#
33 lines
597 B
C#
using CFX;
|
|
using CFX.ResourcePerformance;
|
|
|
|
namespace Sln.Iot.CFX.Event
|
|
{
|
|
/// <summary>
|
|
/// 错误发生事件
|
|
/// </summary>
|
|
public class FaultOccurredEvent
|
|
{
|
|
/// <summary>
|
|
/// 数据封装处理
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public CFXMessage Handle()
|
|
{
|
|
CFXMessage eve = null;
|
|
try
|
|
{
|
|
eve = new FaultOccurred()
|
|
{
|
|
|
|
};
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
|
|
}
|
|
return eve;
|
|
}
|
|
}
|
|
}
|