TraceEventCache.Timestamp Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the current number of ticks in the timer mechanism.
public:
property long Timestamp { long get(); };
public long Timestamp { get; }
member this.Timestamp : int64
Public ReadOnly Property Timestamp As Long
Property Value
The tick counter value of the underlying timer mechanism.
Remarks
The get accessor calls the Stopwatch.GetTimestamp method to get the timestamp. If the Stopwatch class uses a high-resolution performance counter, GetTimestamp returns the current value of that counter. If the Stopwatch class uses the system timer, GetTimestamp returns the Ticks property of DateTime.Now.