OPC Studio User's Guide and Reference
NodeClass Property (UANodeElement)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.AddressSpace Namespace > UANodeElement Class : NodeClass Property
The class of the node.
Syntax
'Declaration
 
Public Property NodeClass As UANodeClass
'Usage
 
Dim instance As UANodeElement
Dim value As UANodeClass
 
instance.NodeClass = value
 
value = instance.NodeClass
public UANodeClass NodeClass {get; set;}
public:
property UANodeClass NodeClass {
   UANodeClass get();
   void set (    UANodeClass value);
}

Property Value

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

Exceptions
ExceptionDescription

An invalid enumeration value was used.

This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception.

Remarks

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