QuickOPC User's Guide and Reference
UANodeElement Constructor(UANodeId,UANodeClass,UAQualifiedName,String,UANodeId,UANodeId,Boolean,UABrowsePath)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.AddressSpace Namespace > UANodeElement Class > UANodeElement Constructor : UANodeElement Constructor(UANodeId,UANodeClass,UAQualifiedName,String,UANodeId,UANodeId,Boolean,UABrowsePath)
Node Id of this node.
The class of the node.
Browse name of the node (this string is intended for programmatic use).
The display name of the node (this string is localized and intended to be human readable).
Type Id of the type of this node.
Type Id of the reference that was used to reach the node.
The node has been reached by following a forward reference.
Contains the browse path for the OPC-UA node.
Syntax
'Declaration
 
Public Function New( _
   ByVal nodeId As UANodeId, _
   ByVal nodeClass As UANodeClass, _
   ByVal browseName As UAQualifiedName, _
   ByVal displayName As String, _
   ByVal typeDefinition As UANodeId, _
   ByVal referenceTypeId As UANodeId, _
   ByVal isForward As Boolean, _
   ByVal browsePath As UABrowsePath _
)
'Usage
 
Dim nodeId As UANodeId
Dim nodeClass As UANodeClass
Dim browseName As UAQualifiedName
Dim displayName As String
Dim typeDefinition As UANodeId
Dim referenceTypeId As UANodeId
Dim isForward As Boolean
Dim browsePath As UABrowsePath
 
Dim instance As New UANodeElement(nodeId, nodeClass, browseName, displayName, typeDefinition, referenceTypeId, isForward, browsePath)

Parameters

nodeId
Node Id of this node.
nodeClass
The class of the node.
browseName
Browse name of the node (this string is intended for programmatic use).
displayName
The display name of the node (this string is localized and intended to be human readable).
typeDefinition
Type Id of the type of this node.
referenceTypeId
Type Id of the reference that was used to reach the node.
isForward
The node has been reached by following a forward reference.
browsePath
Contains the browse path for the OPC-UA node.
Exceptions
ExceptionDescription

A null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.

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.

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.

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