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