Click or drag to resize

DebuggerClient.GetPossibleBreakpointsAsync Method

Version 130.1.90
Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.

Namespace: CefSharp.DevTools.Debugger
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax
public Task<GetPossibleBreakpointsResponse> GetPossibleBreakpointsAsync(
	Location start,
	Location end = null,
	bool? restrictToFunction = null
)

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  Nullable<Boolean>  (Optional)
Only consider locations which are in the same (non-nested) function as start.

Return Value

Task<GetPossibleBreakpointsResponse>
returns System.Threading.Tasks.Task<GetPossibleBreakpointsResponse>
See Also