Table of Contents

Class Location

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

Location in the source code.

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

Constructors

Location(ScriptId, long)

Location in the source code.

public Location(ScriptId ScriptId, long LineNumber)

Parameters

ScriptId ScriptId

Script identifier as reported in the Debugger.scriptParsed.

LineNumber long

Line number in the script (0-based).

Properties

ColumnNumber

Column number in the script (0-based).

public long? ColumnNumber { get; init; }

Property Value

long?

LineNumber

Line number in the script (0-based).

public long LineNumber { get; init; }

Property Value

long

ScriptId

Script identifier as reported in the Debugger.scriptParsed.

public ScriptId ScriptId { get; init; }

Property Value

ScriptId