TicksBaselinedTimestamp Method

Creates a new Ticks value that represents a base-lined timestamp, in 100-nanoseconds intervals, that begins at the beginning of the specified time interval.

Definition

Namespace: Gemstone
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.110 -- Release Build+3e0464f4461df4d3e1175b13966eb47ff832554d
public Ticks BaselinedTimestamp(
	BaselineTimeInterval interval
)

Parameters

interval  BaselineTimeInterval
BaselineTimeInterval to which Ticks timestamp should be base-lined.

Return Value

Ticks
A new Ticks value that represents a base-lined timestamp, in 100-nanoseconds intervals, that begins at the specified BaselineTimeInterval.

Remarks

Base-lining to the Second would return the Ticks value starting at zero milliseconds.
Base-lining to the Minute would return the Ticks value starting at zero seconds and milliseconds.
Base-lining to the Hour would return the Ticks value starting at zero minutes, seconds and milliseconds.
Base-lining to the Day would return the Ticks value starting at zero hours, minutes, seconds and milliseconds.
Base-lining to the Month would return the Ticks value starting at day one, zero hours, minutes, seconds and milliseconds.
Base-lining to the Year would return the Ticks value starting at month one, day one, zero hours, minutes, seconds and milliseconds.

See Also