|
TicksTimeIsValid(Ticks, Ticks, Ticks) Method
|
Determines if time, represented by
Ticks value, is valid by comparing it to the specified
current time.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.238-beta+a124d269d49fa775dc92e4d7ad73327f1839917b
Syntaxfunction TimeIsValid(currentTime, lagTime, leadTime);
View SourceParameters
- currentTime Ticks
- Specified current time (e.g., could be DateTime.Now.Ticks).
- lagTime Ticks
- The allowed lag time, in ticks, before assuming time is too old to be valid.
- leadTime Ticks
- The allowed lead time, in ticks, before assuming time is too advanced to be valid.
Return Value
BooleanTrue, if time represented by
Ticks value, is within the specified range.
Exceptions
Remarks
Time, represented by
Ticks value, is considered valid if it exists within the specified
lagTime and
leadTime range of
currentTime. Note
that
lagTime and
leadTime must be greater than zero.
See Also