Class BreakpointResolvedEventArgs
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
-
EventArgsBreakpointResolvedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.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
BreakpointIdBreakpointIdBreakpoint unique identifier.
LocationLocationActual breakpoint location.
Properties
BreakpointId
Breakpoint unique identifier.
public BreakpointId BreakpointId { get; init; }
Property Value
Location
Actual breakpoint location.
public Location Location { get; init; }