OPC Studio User's Guide and Reference
IsValidValueRank Method



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA Namespace > UAUtilities Class : IsValidValueRank Method
The value to be tested.
Determines whether a given integer is a valid value rank.
Syntax
'Declaration
 
<PureAttribute()>
Public Shared Function IsValidValueRank( _
   ByVal valueRank As Integer _
) As Boolean
'Usage
 
Dim valueRank As Integer
Dim value As Boolean
 
value = UAUtilities.IsValidValueRank(valueRank)
[Pure()]
public static bool IsValidValueRank( 
   int valueRank
)
[Pure()]
public:
static bool IsValidValueRank( 
   int valueRank
) 

Parameters

valueRank
The value to be tested.

Return Value

true if the given value is a valid value rank; false otherwise.
Remarks

This method is pure, i.e. it does not have observable side effects.

This method or property does not throw any exceptions, aside from execution exceptions such as System.Threading.ThreadAbortException or System.OutOfMemoryException.

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