DebuggerClientGetPossibleBreakpointsAsync Method |
Version 88.2.90
Returns possible locations for breakpoint. scriptId in start and end range locations should be
the same.
Namespace:
CefSharp.DevTools.Debugger
Assembly:
CefSharp (in CefSharp.dll) Version: 88.2.90.0 (88.2.90.0)
Syntax public Task<GetPossibleBreakpointsResponse> GetPossibleBreakpointsAsync(
Location start,
Location end = null,
Nullable<bool> restrictToFunction = null
)
public:
Task<GetPossibleBreakpointsResponse^>^ GetPossibleBreakpointsAsync(
Location^ start,
Location^ end = nullptr,
Nullable<bool> restrictToFunction = nullptr
)
Parameters
- start
- Type: CefSharp.DevTools.DebuggerLocation
Start of range to search possible breakpoint locations in. - end (Optional)
- Type: CefSharp.DevTools.DebuggerLocation
End of range to search possible breakpoint locations in (excluding). When not specified, endof scripts is used as end of range. - restrictToFunction (Optional)
- Type: SystemNullableBoolean
Only consider locations which are in the same (non-nested) function as start.
Return Value
Type:
TaskGetPossibleBreakpointsResponsereturns System.Threading.Tasks.Task<GetPossibleBreakpointsResponse>
See Also