QuickOPC User's Guide and Reference
IsValidTimeWeak Method (DAUtilities)



OpcLabs.EasyOpcClassicCore Assembly > OpcLabs.EasyOpc.DataAccess Namespace > DAUtilities Class : IsValidTimeWeak Method
The time to be tested.
Determines whether a given time value is weakly valid in OPC Data Access.
Syntax
'Declaration
 
<PureAttribute()>
Public Shared Function IsValidTimeWeak( _
   ByVal time As Date _
) As Boolean
'Usage
 
Dim time As Date
Dim value As Boolean
 
value = DAUtilities.IsValidTimeWeak(time)
[Pure()]
public static bool IsValidTimeWeak( 
   DateTime time
)
[Pure()]
public:
static bool IsValidTimeWeak( 
   DateTime time
) 

Parameters

time
The time to be tested.

Return Value

true if time is a valid time; false otherwise.
Remarks
Time must be in UTC, or it must be of unspecified kind.

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