WebKit.ShowJavaScriptPromptPanelEventArgs.ShowJavaScriptPromptPanelEventArgs C# (CSharp) Method

ShowJavaScriptPromptPanelEventArgs() public method

Initializes a new instance of the ShowJavaScriptConfirmPanelEventArgs class.
public ShowJavaScriptPromptPanelEventArgs ( string message, string defaultValue ) : System
message string The message to be shown in the prompt panel.
defaultValue string The default value to be shown in the prompt panel.
return System
        public ShowJavaScriptPromptPanelEventArgs(string message, string defaultValue)
        {
            Message = message;
            DefaultValue = defaultValue;
            ReturnValue = defaultValue;
        }
ShowJavaScriptPromptPanelEventArgs