Determines .NET type of an OPC-UA Value attribute with given data type and value rank.
            
            
            Syntax
            
            
            
            
            'Declaration
 
<NotNullAttribute()>
Public Overloads Shared Function GetValueType( _
   ByVal  As Type, _
   ByVal  As Integer _
) As Type
             
        
            
            'Usage
 
Dim dataType As Type
Dim valueRank As Integer
Dim value As Type
 
value = UAType.GetValueType(dataType, valueRank)
             
        
            
            [NotNull()]
public static Type GetValueType( 
   Type ,
   int 
)
             
        
            
            [NotNull()]
public:
static Type^ GetValueType( 
   Type^ ,
   int 
) 
             
        
             
        
            Parameters
- dataType
- The data type.
- valueRank
- The value rank.
Return Value
Returns the .NET type of an OPC-UA Value attribute.
 
            
            
            
            
            
            
            
            
            
            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