interface Debugger.SetBreakpointByUrlParameterType
Properties Jump to heading
Jump to headinglineNumber: number
Line number to set breakpoint at.
optional
Jump to headingurl: string | undefined
URL of the resources to set breakpoint on.
optional
Jump to headingurlRegex: string | undefined
Regex pattern for the URLs of the resources to set breakpoints on. Either url
or urlRegex
must be specified.
optional
Jump to headingscriptHash: string | undefined
Script hash of the resources to set breakpoint on.
optional
Jump to headingcolumnNumber: number | undefined
Offset in the line to set breakpoint at.
optional
Jump to headingcondition: string | undefined
Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.