Table of Contents

Interface IMetricsTiming

Namespace
Amazon.Runtime
Assembly
AWSSDK.Core.dll

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

long

ElapsedTime

Elapsed time from start to stop. If timing hasn't been stopped yet, returns TimeSpan.Zero

TimeSpan ElapsedTime { get; }

Property Value

TimeSpan

IsFinished

Whether the timing has been stopped

bool IsFinished { get; }

Property Value

bool