OPC Studio User's Guide and Reference
IsValidDeadbandValue Method



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA Namespace > UAUtilities Class : IsValidDeadbandValue Method
The deadband value to be tested.
Determines whether a given deadband value is valid in OPC Unified Architecture.
Syntax
'Declaration
 
<PureAttribute()>
Public Shared Function IsValidDeadbandValue( _
   ByVal deadbandValue As Double _
) As Boolean
'Usage
 
Dim deadbandValue As Double
Dim value As Boolean
 
value = UAUtilities.IsValidDeadbandValue(deadbandValue)
[Pure()]
public static bool IsValidDeadbandValue( 
   double deadbandValue
)
[Pure()]
public:
static bool IsValidDeadbandValue( 
   double deadbandValue
) 

Parameters

deadbandValue
The deadband value to be tested.

Return Value

true if deadbandValue is a valid deadband value; false otherwise.
Remarks

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

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

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