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

PromptUsernameAndPassword() public method

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

Same methods

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