DebuggerClientGetPossibleBreakpointsAsync Method  | 
Version 104.4.240 
            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: 104.4.240.0 (104.4.240.0)
Syntaxpublic 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
 - 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