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