Skybound.Gecko.PromptService.Confirm C# (CSharp) Méthode

Confirm() public méthode

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