Click or drag to resize

DebuggerEnableAsync Method

Version 85.3.121
Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received.

Namespace:  CefSharp.DevTools.Debugger
Assembly:  CefSharp (in CefSharp.dll) Version: 85.3.121.0 (85.3.121.0)
Syntax
public Task<EnableResponse> EnableAsync(
	Nullable<long> maxScriptsCacheSize = null
)

Parameters

maxScriptsCacheSize (Optional)
Type: SystemNullableInt64
The maximum size in bytes of collected scripts (not referenced by other heap objects)the debugger can hold. Puts no limit if paramter is omitted.

Return Value

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