'Declaration
<NotNullAttribute()> Public Function GetRoot() As UANodeTreePosition
'Usage
Dim instance As UANodeTreePosition Dim value As UANodeTreePosition value = instance.GetRoot()
[NotNull()] public UANodeTreePosition GetRoot()
[NotNull()] public: UANodeTreePosition^ GetRoot();
Return Value
Because the OpcLabs.EasyOpc.UA.UANodeDescriptor has an implicit conversion from OpcLabs.EasyOpc.UA.AddressSpace.UANodeElement, you can simply use the returned OpcLabs.EasyOpc.UA.AddressSpace.UANodeElement in any place where OpcLabs.EasyOpc.UA.UANodeDescriptor is expected as input, and the corresponding node descriptor will be constructed automatically from the node element. When the implicit conversion operators are not supported (such as with Python.NET), you can use the OpcLabs.EasyOpc.UA.AddressSpace.UANodeElement.ToUANodeDescriptor static method instead.
This method never returns null
(Nothing
in Visual Basic).