Determines whether a given event severity value is valid in OPC Alarms&Events. Zero severities are not allowed.
            
            
            Syntax
            
            
            
            
            'Declaration
 
<PureAttribute()>
Public Overloads Shared Function IsValidEventSeverity( _
   ByVal  As Integer _
) As Boolean
             
        
            
            'Usage
 
Dim eventSeverity As Integer
Dim value As Boolean
 
value = AEUtilities.IsValidEventSeverity(eventSeverity)
             
        
            
            [Pure()]
public static bool IsValidEventSeverity( 
   int 
)
             
        
            
            [Pure()]
public:
static bool IsValidEventSeverity( 
   int 
) 
             
        
             
        
            Parameters
- eventSeverity
 
- The event severity to be tested.
 
            
            Return Value
true if  is a valid event severity; false otherwise.
 
            
            
            
            
            
            
            
            
            
            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