QOpcUaQualifiedName#

The OPC UA QualifiedName type. More

Inheritance diagram of PySide6.QtOpcUa.QOpcUaQualifiedName

Synopsis#

Functions#

Detailed Description#

This is the Qt OPC UA representation for the OPC UA QualifiedName type defined in OPC-UA part 3, 8.3. A QualifiedName is a name qualified by a namespace index. The namespace index corresponds to an entry in the server’s namespace array. QualifiedName is mainly used to represent the BrowseName attribute of a node.

class PySide6.QtOpcUa.QOpcUaQualifiedName#

PySide6.QtOpcUa.QOpcUaQualifiedName(arg__1)

PySide6.QtOpcUa.QOpcUaQualifiedName(namespaceIndex, name)

Parameters

Constructs a qualified name from rhs.

Constructs a qualified name with namespace index namespaceIndex and the name name.

PySide6.QtOpcUa.QOpcUaQualifiedName.name()#
Return type

str

Returns the name.

See also

setName()

PySide6.QtOpcUa.QOpcUaQualifiedName.namespaceIndex()#
Return type

quint16

Returns the namespace index.

PySide6.QtOpcUa.QOpcUaQualifiedName.__eq__(rhs)#
Parameters

rhsPySide6.QtOpcUa.QOpcUaQualifiedName

Return type

bool

Returns true if this qualified name has the same value as rhs.

PySide6.QtOpcUa.QOpcUaQualifiedName.setName(name)#
Parameters

name – str

Sets the name to name.

See also

name()

PySide6.QtOpcUa.QOpcUaQualifiedName.setNamespaceIndex(namespaceIndex)#
Parameters

namespaceIndexquint16

Sets the namespace index to namespaceIndex.

See also

namespaceIndex()