Class JavascriptDialogClosedEventArgs
Fired when a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload) has been closed.
public sealed class JavascriptDialogClosedEventArgs : EventArgs
- Inheritance
-
JavascriptDialogClosedEventArgs
- Inherited Members
Properties
FrameId
Frame id.
[JsonPropertyName("frameId")]
public string FrameId { get; set; }
Property Value
Result
Whether dialog was confirmed.
[JsonPropertyName("result")]
public bool Result { get; set; }
Property Value
UserInput
User input in case of prompt.
[JsonPropertyName("userInput")]
public string UserInput { get; set; }