OPC Studio User's Guide and Reference
NodeKind Property (UAServerNode)



OpcLabs.ServerOpcUA Assembly > OpcLabs.EasyOpc.UA.NodeSpace Namespace > UAServerNode Class : NodeKind Property
Determines whether the node is a data variable, folder, or a root.
Syntax
'Declaration
 
Public MustOverride ReadOnly Property NodeKind As UAServerNodeKind
'Usage
 
Dim instance As UAServerNode
Dim value As UAServerNodeKind
 
value = instance.NodeKind
public abstract UAServerNodeKind NodeKind {get;}
public:
abstract property UAServerNodeKind NodeKind {
   UAServerNodeKind get();
}

Property Value

The kind of the node as defined by the UAServerNodeKind enumeration.

The default value of this property is None (UAServerNodeKind.None).

Remarks

This property relates to the role and capabilities of the node within the OPC UA server's address space. It helps in determining how the node can be interacted with or manipulated during runtime.

This method or property does not throw any exceptions, aside from execution exceptions such as System.Threading.ThreadAbortException or System.OutOfMemoryException.

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