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

Method get_properties

opcua/common/node.py:318–323  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

316 return self.get_referenced_nodes(refs, ua.BrowseDirection.Forward, nodeclassmask)
317
318 def get_properties(self):
319 """
320 return properties of node.
321 properties are child nodes with a reference of type HasProperty and a NodeClass of Variable
322 """
323 return self.get_children(refs=ua.ObjectIds.HasProperty, nodeclassmask=ua.NodeClass.Variable)
324
325 def get_variables(self):
326 """

Calls 1

get_childrenMethod · 0.95