Click or drag to resize

DebuggerClient.StepIntoAsync Method

Version 110.0.300
Steps into the function call.

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

Parameters

breakOnAsyncCall (Optional)
Type: System.Nullable<Boolean>
Debugger will pause on the execution of the first async task which was scheduledbefore next pause.
skipList (Optional)
Type: System.Collections.Generic.IList<LocationRange>
The skipList specifies location ranges that should be skipped on step into.

Return Value

Type: Task<DevToolsMethodResponse>
returns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also