Determines whether a given publishing interval is valid in OPC Unified Architecture.
            
            
            Syntax
            
            
            
            
            'Declaration
 
<PureAttribute()>
Public Shared Function IsValidPublishingInterval( _
   ByVal  As Integer _
) As Boolean
             
        
            
            'Usage
 
Dim publishingInterval As Integer
Dim value As Boolean
 
value = UAUtilities.IsValidPublishingInterval(publishingInterval)
             
        
            
            [Pure()]
public static bool IsValidPublishingInterval( 
   int 
)
             
        
            
            [Pure()]
public:
static bool IsValidPublishingInterval( 
   int 
) 
             
        
             
        
            Parameters
- publishingInterval
 
- The publishing interval to be tested.
 
            
            Return Value
true if  is a valid publishing interval; 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