return properties of node. properties are child nodes with a reference of type HasProperty and a NodeClass of Variable
(self)
| 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 | """ |