Class SetBreakpointOnFunctionCallCommandSettings
Sets JavaScript breakpoint before each call to the given function. If another function was created from the same source as a given one, calling it will also trigger the breakpoint.
public sealed class SetBreakpointOnFunctionCallCommandSettings : ICommand
- Inheritance
-
SetBreakpointOnFunctionCallCommandSettings
- 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 stop on the breakpoint if this expression evaluates to true.
[JsonPropertyName("condition")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Condition { get; set; }
Property Value
ObjectId
Function object id.
[JsonPropertyName("objectId")]
public string ObjectId { get; set; }