You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Restore SetBreakpoints API
* Remove default values in API methods
* Fix inheriting APIs
* Correct further comments
* Fix breakpoint API use issues
* Fix breakpoint API tests
/// <param name="command">The name of the command that will trigger the breakpoint. This value is required and may not be null.</param>
1127
+
/// <param name="command">The name of the command that will trigger the breakpoint. This value may not be null.</param>
1128
1128
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
1129
1129
/// <param name="path">The path to the script file where the breakpoint may be hit. If null, the breakpoint may be hit anywhere the command is invoked.</param>
1130
-
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. Defaults to null (current runspace).</param>
1130
+
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
1131
1131
/// <returns>The command breakpoint that was set.</returns>
/// <param name="variableName">The name of the variable that will trigger the breakpoint. This value is required and may not be null.</param>
1139
-
/// <param name="accessMode">The variable access mode that will trigger the breakpoint. By default variable breakpoints will trigger only when the variable is updated.</param>
1138
+
/// <param name="variableName">The name of the variable that will trigger the breakpoint. This value may not be null.</param>
1139
+
/// <param name="accessMode">The variable access mode that will trigger the breakpoint.</param>
1140
1140
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
1141
1141
/// <param name="path">The path to the script file where the breakpoint may be hit. If null, the breakpoint may be hit anywhere the variable is accessed using the specified access mode.</param>
1142
-
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. Defaults to null (current runspace).</param>
1142
+
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
1143
1143
/// <returns>The variable breakpoint that was set.</returns>
/// <param name="path">The path to the script file where the breakpoint may be hit. This value is required and may not be null.</param>
1151
-
/// <param name="line">The line in the script file where the breakpoint may be hit. This value is required and must be greater than or equal to 1.</param>
1150
+
/// <param name="path">The path to the script file where the breakpoint may be hit. This value may not be null.</param>
1151
+
/// <param name="line">The line in the script file where the breakpoint may be hit. This value must be greater than or equal to 1.</param>
1152
1152
/// <param name="column">The column in the script file where the breakpoint may be hit. If 0, the breakpoint will trigger on any statement on the line.</param>
1153
1153
/// <param name="action">The action to take when the breakpoint is hit. If null, PowerShell will break into the debugger when the breakpoint is hit.</param>
1154
-
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. Defaults to null (current runspace).</param>
1154
+
/// <param name="runspaceId">The runspace id of the runspace you want to interact with. A null value will use the current runspace.</param>
1155
1155
/// <returns>The line breakpoint that was set.</returns>
0 commit comments