Skybound.Gecko.LauncherDialog.Show C# (CSharp) Méthode

Show() public méthode

public Show ( nsIHelperAppLauncher aLauncher, nsISupports aWindowContext, uint aReason ) : void
aLauncher nsIHelperAppLauncher
aWindowContext nsISupports
aReason uint
Résultat void
        public void Show(nsIHelperAppLauncher aLauncher, nsISupports aWindowContext, uint aReason)
        {
            if (Download != null)
            {
                Download(this, new LauncherDialogEvent(aLauncher, aWindowContext, aReason));
            }
            else
            {
                aLauncher.Cancel(nsIHelperAppLauncherConstants.NS_BINDING_ABORTED);
            }
        }