Interface IMetricsTiming
Represents how long a phase of an SDK request took.
public interface IMetricsTiming
Properties
ElapsedTicks
Elapsed ticks from start to stop. If timing hasn't been stopped yet, returns 0.
long ElapsedTicks { get; }
Property Value
ElapsedTime
Elapsed time from start to stop. If timing hasn't been stopped yet, returns TimeSpan.Zero
TimeSpan ElapsedTime { get; }
Property Value
IsFinished
Whether the timing has been stopped
bool IsFinished { get; }