OPC Studio User's Guide and Reference
IsValidNotificationRate Method



OpcLabs.EasyOpcClassicCore Assembly > OpcLabs.EasyOpc.AlarmsAndEvents Namespace > AEUtilities Class : IsValidNotificationRate Method
The notification rate value to be tested.
Determines whether a given notification rate value is valid in OPC Alarms&Events.
Syntax
'Declaration
 
<PureAttribute()>
Public Shared Function IsValidNotificationRate( _
   ByVal notificationRate As Integer _
) As Boolean
'Usage
 
Dim notificationRate As Integer
Dim value As Boolean
 
value = AEUtilities.IsValidNotificationRate(notificationRate)
[Pure()]
public static bool IsValidNotificationRate( 
   int notificationRate
)
[Pure()]
public:
static bool IsValidNotificationRate( 
   int notificationRate
) 

Parameters

notificationRate
The notification rate value to be tested.

Return Value

true if notificationRate is a valid notification rate; 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