MCPcopy Create free account
hub / github.com/FreeOpcUa/python-opcua / get_variables

Method get_variables

opcua/common/node.py:325–330  ·  view source on GitHub ↗

return variables of node. properties are child nodes with a reference of type HasComponent and a NodeClass of Variable

(self)

Source from the content-addressed store, hash-verified

323 return self.get_children(refs=ua.ObjectIds.HasProperty, nodeclassmask=ua.NodeClass.Variable)
324
325 def get_variables(self):
326 """
327 return variables of node.
328 properties are child nodes with a reference of type HasComponent and a NodeClass of Variable
329 """
330 return self.get_children(refs=ua.ObjectIds.HasComponent, nodeclassmask=ua.NodeClass.Variable)
331
332 def get_methods(self):
333 """

Callers 2

__init__Method · 0.80

Calls 1

get_childrenMethod · 0.95