Table of Contents

Class BreakpointResolvedEventArgs

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

Fired when breakpoint is resolved to an actual script and location. Deprecated in favor of resolvedBreakpoints in the scriptParsed event.

public sealed record BreakpointResolvedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<BreakpointResolvedEventArgs>
Inheritance
EventArgs
BreakpointResolvedEventArgs
Implements
IEquatable<EventArgs>
Inherited Members
EventArgs.ToString()
EventArgs.GetHashCode()
EventArgs.Equals(EventArgs)
EventArgs.<Clone>$()
EventArgs.BiDi
EventArgs.AdditionalData
EventArgs.AdditionalMessageData

Constructors

BreakpointResolvedEventArgs(BreakpointId, Location)

Fired when breakpoint is resolved to an actual script and location. Deprecated in favor of resolvedBreakpoints in the scriptParsed event.

public BreakpointResolvedEventArgs(BreakpointId BreakpointId, Location Location)

Parameters

BreakpointId BreakpointId

Breakpoint unique identifier.

Location Location

Actual breakpoint location.

Properties

BreakpointId

Breakpoint unique identifier.

public BreakpointId BreakpointId { get; init; }

Property Value

BreakpointId

Location

Actual breakpoint location.

public Location Location { get; init; }

Property Value

Location