Class StepIntoCommandSettings
Steps into the function call.
public sealed class StepIntoCommandSettings : ICommand
- Inheritance
-
StepIntoCommandSettings
- Implements
- Inherited Members
Properties
BreakOnAsyncCall
Debugger will pause on the execution of the first async task which was scheduled before next pause.
[JsonPropertyName("breakOnAsyncCall")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? BreakOnAsyncCall { get; set; }
Property Value
- bool?
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
SkipList
The skipList specifies location ranges that should be skipped on step into.
[JsonPropertyName("skipList")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public LocationRange[]? SkipList { get; set; }