Class SetBreakpointCommandSettings
Sets JavaScript breakpoint at a given location.
public sealed class SetBreakpointCommandSettings : ICommand
- Inheritance
-
SetBreakpointCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
Condition
Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.
[JsonPropertyName("condition")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Condition { get; set; }
Property Value
Location
Location to set breakpoint in.
[JsonPropertyName("location")]
public Location Location { get; set; }