| PageClientHandleJavaScriptDialogAsync Method  | 
Version 92.0.260 
            Accepts or dismisses a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload).
            
 
    Namespace: 
   CefSharp.DevTools.Page
    Assembly:
   CefSharp (in CefSharp.dll) Version: 92.0.260.0 (92.0.260.0)
 Syntax
Syntaxpublic Task<DevToolsMethodResponse> HandleJavaScriptDialogAsync(
	bool accept,
	string promptText = null
)
public:
Task<DevToolsMethodResponse^>^ HandleJavaScriptDialogAsync(
	bool accept, 
	String^ promptText = nullptr
)
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: 
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
 See Also
See Also