OPC Studio User's Guide and Reference
IsValidQueueSize Method



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

Parameters

queueSize
The queue size to be tested.

Return Value

true if queueSize is a valid queue size; 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