Skybound.Gecko.PromptService.Confirm C# (CSharp) Method

Confirm() public method

public Confirm ( nsIDOMWindow aParent, string aDialogTitle, string aText ) : bool
aParent nsIDOMWindow
aDialogTitle string
aText string
return bool
        public bool Confirm(nsIDOMWindow aParent, string aDialogTitle, string aText)
        {
            bool checkState = false;
            return ConfirmCheck(aParent, aDialogTitle, aText, null, ref checkState);
        }