DebuggerClientSetBreakpointOnFunctionCallAsync Method |
Version 118.6.80
Sets JavaScript breakpoint before each call to the given function.
If another function was created from the same source as a given one,
calling it will also trigger the breakpoint.
Namespace:
CefSharp.DevTools.Debugger
Assembly:
CefSharp.Core (in CefSharp.Core.dll) Version: 118.6.80.0
Syntax public Task<SetBreakpointOnFunctionCallResponse> SetBreakpointOnFunctionCallAsync(
string objectId,
string condition = null
)
public:
Task<SetBreakpointOnFunctionCallResponse^>^ SetBreakpointOnFunctionCallAsync(
String^ objectId,
String^ condition = nullptr
)
Parameters
- objectId
- Type: SystemString
Function object id. - condition (Optional)
- Type: SystemString
Expression to use as a breakpoint condition. When specified, debugger willstop on the breakpoint if this expression evaluates to true.
Return Value
Type:
TaskSetBreakpointOnFunctionCallResponsereturns System.Threading.Tasks.Task<SetBreakpointOnFunctionCallResponse>
See Also