Get value of a node as a python type. Only variables ( and properties) have values. An exception will be generated for other node types. WARNING: on server side, this function returns a ref to object in ua database. Do not modify it if it is a mutable object unless y
(self)
| 146 | return result.Value.Value |
| 147 | |
| 148 | def get_value(self): |
| 149 | """ |
| 150 | Get value of a node as a python type. Only variables ( and properties) have values. |
| 151 | An exception will be generated for other node types. |
| 152 | WARNING: on server side, this function returns a ref to object in ua database. Do not modify it if it is a mutable |
| 153 | object unless you know what you are doing |
| 154 | """ |
| 155 | result = self.get_data_value() |
| 156 | return result.Value.Value |
| 157 | |
| 158 | def get_data_value(self): |
| 159 | """ |