Determines whether a given value age is valid in OPC Data Access.
            
            
            Syntax
            
            
            
            
            'Declaration
 
<JetBrains.Annotations.MustUseReturnValueAttribute()>
<JetBrains.Annotations.PureAttribute()>
Public Shared Function IsValidValueAge( _
   ByVal  As Integer _
) As Boolean
             
        
            
            'Usage
 
Dim valueAge As Integer
Dim value As Boolean
 
value = DAUtilities.IsValidValueAge(valueAge)
             
        
            
            [JetBrains.Annotations.MustUseReturnValue()]
[JetBrains.Annotations.Pure()]
public static bool IsValidValueAge( 
   int 
)
             
        
            
            [JetBrains.Annotations.MustUseReturnValue()]
[JetBrains.Annotations.Pure()]
public:
static bool IsValidValueAge( 
   int 
) 
             
        
             
        
            Parameters
- valueAge
- The value age to be tested.
Return Value
true if  is a valid value age; 
false otherwise.
This return value of this method should not be ignored.
 
            
            
            
            
            
            
            
            
            
            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