DebuggerClientEnableAsync Method |
Version 130.1.90
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.DebuggerAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax public Task<EnableResponse> EnableAsync(
double? maxScriptsCacheSize = null
)
public:
Task<EnableResponse^>^ EnableAsync(
Nullable<double> maxScriptsCacheSize = nullptr
)
Parameters
- maxScriptsCacheSize NullableDouble (Optional)
- The maximum size in bytes of collected scripts (not referenced by other heap objects)the debugger can hold. Puts no limit if parameter is omitted.
Return Value
TaskEnableResponsereturns System.Threading.Tasks.Task<EnableResponse>
See Also