You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to open62541
Hi I need to access to a node browse name and references but i found this in the library:
* The structures defined in this section are *not user-facing*. The interaction * with the information model is possible only via the OPC UA :ref:`services`. * Still, we reproduce how nodes are represented internally so that users may * have a clear mental model. * * Base Node Attributes * -------------------- * * Nodes contain attributes according to their node type. The base node * attributes are common to all node types. In the OPC UA :ref:`services`, * attributes are referred to via the :ref:`nodeid` of the containing node and * an integer :ref:`attribute-id`. * * Internally, open62541 uses ``UA_Node`` in places where the exact node type is * not known or not important. The ``nodeClass`` attribute is used to ensure the * correctness of casting from ``UA_Node`` to a specific node type. */ #define UA_NODE_BASEATTRIBUTES \ UA_NodeId nodeId; \ UA_NodeClass nodeClass; \ UA_QualifiedName browseName; \ UA_LocalizedText displayName; \ UA_LocalizedText description; \ UA_UInt32 writeMask; \ UA_UInt32 userWriteMask; \ size_t referencesSize; \ UA_ReferenceNode *references;