dathlin / OpcUaHelper

一个通用的opc ua客户端类库,基于.net 4.6.1创建,基于官方opc ua基金会跨平台库创建,封装了节点读写,批量节点读写,引用读取,特性读取,历史数据读取,方法调用,节点订阅,批量订阅等操作。还提供了一个节点浏览器工具。

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

服务器断网信息提示不及时

wuyang26 opened this issue · comments

在private void Session_KeepAlive(Session session, KeepAliveEventArgs e)函数中的
if (ServiceResult.IsBad(e.Status))
{
//这里面的提示至少延迟15秒
}
//添加类似如下(延迟3秒):
else
{
// update status.
UpdateStatus(false, e.CurrentTime, " Server Status:"
+ e.CurrentState+" Address:[{0}]", session.Endpoint.EndpointUrl);

}