'Declaration
Public Shared Function FindDataType( _ ByVal dataTypeId As UANodeId, _ ByRef dataType As Type _ ) As Boolean
'Usage
Dim dataTypeId As UANodeId Dim dataType As Type Dim value As Boolean value = UAType.FindDataType(dataTypeId, dataType)
public static bool FindDataType( UANodeId dataTypeId, out Type dataType )
public: static bool FindDataType( UANodeId^ dataTypeId, [Out] Type^ dataType )
Parameters
- dataTypeId
- The OPC-UA data type ID. The NodeId of the DataType definition.
- dataType
- The .NET data type that corresponds to the given data type ID.
Return Value
true
if the .NET data type has been found for given OPC-UA data type ID; false
otherwise.