Get value of a node as a DataValue object. Only variables (and properties) have values. An exception will be generated for other node types. DataValue contain a variable value as a variant as well as server and source timestamps
(self)
| 156 | return result.Value.Value |
| 157 | |
| 158 | def get_data_value(self): |
| 159 | """ |
| 160 | Get value of a node as a DataValue object. Only variables (and properties) have values. |
| 161 | An exception will be generated for other node types. |
| 162 | DataValue contain a variable value as a variant as well as server and source timestamps |
| 163 | """ |
| 164 | return self.get_attribute(ua.AttributeIds.Value) |
| 165 | |
| 166 | def set_array_dimensions(self, value): |
| 167 | """ |