Skip to content

QualifiedName

Canonical path: o6.QualifiedName

QualifiedName

OPC UA QualifiedName: the (namespace, name) BrowseName pair.

A BrowseName carries what a node is, locale-independently, so the same QualifiedName names the same idea on every server while the underlying NodeId may differ. It is not unique: several nodes can share one.

Besides the (ns, name) pair, it parses from a single string, where the namespace may be an index ("1:Pump"), a shortname ("ns=di;DeviceSet"), or a URI ("nsu=http://…/UA/DI/;DeviceSet").

See Address & Identity Types.

Attributes

ns property

ns

The namespace module, or the numeric index if it is not loaded.

name property

name

The name part of the BrowseName.

Functions

__init__

__init__() -> None
__init__(ns: int, name: str) -> None
__init__(name: str) -> None
__init__(*args, **kwargs)