Click or drag to resize

DebuggerClientStepIntoAsync Method

Version 130.1.90
Steps into the function call.

Namespace: CefSharp.DevTools.Debugger
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax
public Task<DevToolsMethodResponse> StepIntoAsync(
	bool? breakOnAsyncCall = null,
	IList<LocationRange> skipList = null
)

Parameters

breakOnAsyncCall  NullableBoolean  (Optional)
Debugger will pause on the execution of the first async task which was scheduledbefore next pause.
skipList  IListLocationRange  (Optional)
The skipList specifies location ranges that should be skipped on step into.

Return Value

TaskDevToolsMethodResponse
returns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also