DebuggerClientSetBreakpointOnFunctionCallAsync Method |
Version 104.4.240
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 (in CefSharp.dll) Version: 104.4.240.0 (104.4.240.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