using System.Collections; using System.Collections.Generic; using UnityEngine; using AX.NetworkSystem; using AX.Network.Protocols; using AX.MessageSystem; namespace MobileCFFSInfo { /// /// 移动指挥终端模块错误提示处理 /// public class ERROR : NetworkMessageBehaviour { protected override void Execute(BinaryMessage message) { var errorInfo = message.Body.Deserialize(); //许可证到期、授权用户已达最大数、客户端身份与发送的数据不匹配 提示 HintContent hintContent = new HintContent(); hintContent.hints = errorInfo.ErrorMessage; MessageDispatcher.SendMessage("POPUP_HINTWINDOW", hintContent); } } }