WebKit.ShowJavaScriptPromptPanelEventArgs.ShowJavaScriptPromptPanelEventArgs C# (CSharp) Метод

ShowJavaScriptPromptPanelEventArgs() публичный Метод

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.
Результат System
        public ShowJavaScriptPromptPanelEventArgs(string message, string defaultValue)
        {
            Message = message;
            DefaultValue = defaultValue;
            ReturnValue = defaultValue;
        }
ShowJavaScriptPromptPanelEventArgs