Click or drag to resize

DebuggerClientGetPossibleBreakpointsAsync Method

Version 102.0.100
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: 102.0.100.0 (102.0.100.0)
Syntax
public Task<GetPossibleBreakpointsResponse> GetPossibleBreakpointsAsync(
	Location start,
	Location end = null,
	bool? restrictToFunction = null
)

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: TaskGetPossibleBreakpointsResponse
returns System.Threading.Tasks.Task<GetPossibleBreakpointsResponse>
See Also