我正在尝试使用session从OPC UA服务器浏览节点。
BrowseContext browseContext = new BrowseContext()
{
BrowseDirection = BrowseDirection.Forward,
IncludeSubtypes = true,
ReferenceTypeId = ReferenceTypeIds.References,
};
Byte[] cp = null;
List<ReferenceDescription> objectTypeNodes = session.Browse(ObjectTypeIds.BaseObjectType, browseContext, new RequestSettings() { OperationTimeout = 10000 }, out cp);
但我的延续点是返回null。 请帮助。
答案 0 :(得分:0)
这正是应该归还的东西。这意味着您获得了所有引用,并且没有任何内容可以继续。
如果你得到一个延续点,那么你必须调用BrowseNext来获取下一组引用。