At.FF.Krems.FullscreenBrowser.FilteredPromptService.PromptPassword C# (CSharp) Method

PromptPassword() public method

The prompt password.
public PromptPassword ( nsIDOMWindow parent, string dialogTitle, string text, string &password, string checkMsg, bool &checkState ) : bool
parent nsIDOMWindow The parent.
dialogTitle string The dialog title.
text string The text.
password string The password.
checkMsg string The check message.
checkState bool The check state.
return bool
        public bool PromptPassword(
            nsIDOMWindow parent,
            string dialogTitle,
            string text,
            ref string password,
            string checkMsg,
            ref bool checkState)
        {
            return PromptService.PromptPassword(dialogTitle, text, ref password, checkMsg, ref checkState);
        }

Same methods

FilteredPromptService::PromptPassword ( string dialogTitle, string text, string &password, string checkMsg, bool &checkValue ) : bool