| 
            
              DateTimeExtensionsUtcTimeIsValid Method
             | 
          
        
        Determines if the specified UTC time is valid, by comparing it to the system clock.
        
        Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
SyntaxGSF.DateTimeExtensions.UtcTimeIsValid = function(utcTime, lagTime, leadTime);
 View SourceParameters
- utcTime  DateTime
 - UTC time to test for validity.
 - lagTime  Double
 - The allowed lag time, in seconds, before assuming time is too old to be valid.
 - leadTime  Double
 - The allowed lead time, in seconds, before assuming time is too advanced to be
            valid.
 
Return Value
BooleanTrue, if time is within the specified range.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
DateTime. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
Exceptions
RemarksTime is considered valid if it exists within the specified lag time/lead time range of current
            time.
Note that lag time and lead time must be greater than zero, but can be set to sub-second
            intervals.
See Also