Table of Contents

Interface IPerfInterval

Namespace
Ranorex.Core.Tracing
Assembly
Ranorex.Core.dll

Represents a performance timing interval.

public interface IPerfInterval

Properties

ElapsedMs

Number of milliseconds elapsed since the interval was started.

int ElapsedMs { get; }

Property Value

int

EventStart

The start timestamp of the interval.

DateTimeOffset EventStart { get; }

Property Value

DateTimeOffset

RelatedActivity

The Activity related to this interval.

Activity RelatedActivity { get; }

Property Value

Activity