<< 点击显示目录 >> 主页 mappView帮助助手 > mapp View帮助信息 > 工程 > 事件和行动 > 事件 > OPC UA系统事件 > 断开连接 |
该事件用于检测与OPC UA服务器的连接中断。
事件 "断开连接 "只能在过去与OPC UA服务器的连接已经存在(已连接)的情况下被执行。
以下参数可以在事件 处理程序的条件中与事件 "断开连接 "一起使用 。
Argument |
说明 |
serverAlias |
受影响的OPC UA服务器连接的serverAlias。一个空字符串代表默认的OPC UA服务器。 |
timestamp |
连接时间(UTC) |
如果与远程OPC UA服务器的连接被中断,例如,一个具有相应状态的会话变量可以被更新。最初,布尔会话变量可以预先初始化为值 "true"。
<EventBinding>
<Source xsi:type="opcUaSystem.Event" event="Disconnected" />
<EventHandler condition="serverAlias="Remote"">
<Action>
<Target xsi:type="session.VariableAction" refId="RemoteServerState" >
<Method xsi:type="session.VariableAction.SetValueBool" value="false" />
</Target>
</Action>
</EventHandler>
</EventBinding>