Click or drag to resize

PageClientHandleJavaScriptDialogAsync Method

Version 102.0.100
Accepts or dismisses a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload).

Namespace:  CefSharp.DevTools.Page
Assembly:  CefSharp (in CefSharp.dll) Version: 102.0.100.0 (102.0.100.0)
Syntax
public Task<DevToolsMethodResponse> HandleJavaScriptDialogAsync(
	bool accept,
	string promptText = null
)

Parameters

accept
Type: SystemBoolean
Whether to accept or dismiss the dialog.
promptText (Optional)
Type: SystemString
The text to enter into the dialog prompt before accepting. Used only if this is a promptdialog.

Return Value

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