Table of Contents

Class TimeMeasureProfiler

Namespace
Cuemon.Diagnostics
Assembly
Cuemon.Diagnostics.dll

Represents a profiler that is optimized for time measuring operations.

public class TimeMeasureProfiler : Profiler
Inheritance
Object
TimeMeasureProfiler
Derived
Inherited Members

Constructors

TimeMeasureProfiler()

Initializes a new instance of the TimeMeasureProfiler class.

public TimeMeasureProfiler()

Properties

Elapsed

Gets the total elapsed time measured by this profiler.

public TimeSpan Elapsed { get; }

Property Value

TimeSpan

A read-only System.TimeSpan representing the total elapsed time measured by this profiler.

IsRunning

Gets a value indicating whether this time measuring profiler is still running.

public bool IsRunning { get; }

Property Value

Boolean

true if this time measuring profiler is still running; otherwise, false.

Timer

Gets the actual timer of this profiler.

public Stopwatch Timer { get; }

Property Value

Stopwatch

The actual timer of this profiler.

Methods

ToString()

Returns a System.String that represents this instance.

public override string ToString()

Returns

String

A System.String that represents this instance.

See Also