Table of Contents

Class PositionTickInfo

Namespace
Selenium.WebDriver.BiDi.Cdp.Profiler
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Specifies a number of samples attributed to a certain source position.

public sealed record PositionTickInfo : IEquatable<PositionTickInfo>
Inheritance
PositionTickInfo
Implements
Inherited Members

Constructors

PositionTickInfo(long, long)

Specifies a number of samples attributed to a certain source position.

public PositionTickInfo(long Line, long Ticks)

Parameters

Line long

Source line number (1-based).

Ticks long

Number of samples attributed to the source line.

Properties

Line

Source line number (1-based).

public long Line { get; init; }

Property Value

long

Ticks

Number of samples attributed to the source line.

public long Ticks { get; init; }

Property Value

long