TicksLocalTimeIsValid(Double, Double) Method

Determines if time, represented by Ticks value in local time, is valid by comparing it to the system clock.

Definition

Namespace: Gemstone
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.110 -- Release Build+3e0464f4461df4d3e1175b13966eb47ff832554d
public bool LocalTimeIsValid(
	double lagTime,
	double leadTime
)

Parameters

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

Boolean
True, if local time represented by Ticks value, is within the specified range.

Remarks

Time, represented by Ticks value, is considered valid if it exists within the specified lagTime and leadTime range of local system clock time. Note that lagTime and leadTime must be greater than zero, but can be set to sub-second intervals.

Exceptions

ArgumentOutOfRangeExceptionlagTime and leadTime must be greater than zero, but can be less than one.

See Also