Exemple #1
0
        public UninstallCommand(CustomBootstrapperApplication bootstrapperApplication)
        {
            this.bootstrapperApplication = bootstrapperApplication ?? throw new ArgumentNullException(nameof(bootstrapperApplication));

            dispatcher = Dispatcher.CurrentDispatcher;

            this.bootstrapperApplication.PlanBegin             += HandlePlanBegin;
            this.bootstrapperApplication.DetectPackageComplete += HandleDetectPackageComplete;
        }
Exemple #2
0
 public BootstrapperApplicationModel(CustomBootstrapperApplication customBootstrapperApplication)
 {
     this.CustomBootstrapperApplication = customBootstrapperApplication;
     this._hwnd = IntPtr.Zero;
 }