'Declaration
<ExtensionAttribute()> <NotNullAttribute()> Public Overloads Shared Function ReadDataType( _ ByVal client As IEasyUAClient, _ ByVal nodeArguments As UANodeArguments _ ) As UANodeId
'Usage
Dim client As IEasyUAClient Dim nodeArguments As UANodeArguments Dim value As UANodeId value = IEasyUAClientExtension2.ReadDataType(client, nodeArguments)
[Extension()] [NotNull()] public static UANodeId ReadDataType( IEasyUAClient client, UANodeArguments nodeArguments )
[Extension()] [NotNull()] public: static UANodeId^ ReadDataType( IEasyUAClient^ client, UANodeArguments^ nodeArguments )
Parameters
- client
- The client object that will perform the operation.
This is typically the OpcLabs.EasyOpc.UA.EasyUAClient object.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - nodeArguments
- An arguments object that specifies the node in the OPC server.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).
Return Value
Because there is an implicit conversion from OpcLabs.EasyOpc.UA.AddressSpace.UANodeId to OpcLabs.EasyOpc.UA.UANodeDescriptor, in languages that support implicit conversion operators (such as C# or VB.NET), you can simply use the returned OpcLabs.EasyOpc.UA.AddressSpace.UANodeId in any place where the OpcLabs.EasyOpc.UA.UANodeDescriptor is expected as input, and the corresponding node descriptor will be constructed automatically.
Also, because the OpcLabs.EasyOpc.UA.AddressSpace.UANodeId has an implicit conversion to System.String, and it converts to the expanded text of the node Id (OpcLabs.EasyOpc.UA.AddressSpace.UANodeId.ExpandedText), in languages that support implicit conversion operators (such as C# or VB.NET), you can simply use the returned OpcLabs.EasyOpc.UA.AddressSpace.UANodeId in any place where expanded text of a node Id (a string) is expected as input, and the corresponding expanded text will be taken automatically from the node Id.
This method never returns null
(Nothing
in Visual Basic).