OPC Studio User's Guide and Reference
NamedNodePath Property



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.Navigation Namespace > UANamedNodeDescriptor Class : NamedNodePath Property
The named node path, after which the node given by NodeName logically follows.
Syntax
'Declaration
 
<NotNullAttribute()>
Public Property NamedNodePath As UANamedNodePath
'Usage
 
Dim instance As UANamedNodeDescriptor
Dim value As UANamedNodePath
 
instance.NamedNodePath = value
 
value = instance.NamedNodePath
[NotNull()]
public UANamedNodePath NamedNodePath {get; set;}
[NotNull()]
public:
property UANamedNodePath^ NamedNodePath {
   UANamedNodePath^ get();
   void set (    UANamedNodePath^ value);
}

Property Value

The value of this property cannot be null (Nothing in Visual Basic).

Remarks

Because the UANamedNodePath has an implicit conversion from OpcLabs.EasyOpc.UA.UANodeDescriptor, in languages that support implicit conversion operators (such as C# or VB.NET), you can simply use a OpcLabs.EasyOpc.UA.UANodeDescriptor (containing the base and only node in the named node path) in place of UANamedNodePath value when setting this property, and the corresponding OPC UA named node path will be constructed automatically. When the implicit conversion operators are not supported (such as with Python.NET), you can use the UANamedNodePath.FromUANodeDescriptor static method instead.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also