C# Class WixSharp.Bootstrapper.SilentManagedBA

Implements canonical WiX managed bootstrapper application without any UI.
Inheritance: Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperApplication
Afficher le fichier Open project: Eun/WixSharp

Private Properties

Свойство Type Description
OnApplyComplete void
OnDetectPackageComplete void
OnPlanComplete void

Méthodes protégées

Méthode Description
Run ( ) : void

Entry point that is called when the Bootstrapper application is ready to run.

Private Methods

Méthode Description
OnApplyComplete ( object sender, Microsoft.Tools.WindowsInstallerXml.Bootstrapper.ApplyCompleteEventArgs e ) : void

Method that gets invoked when the Bootstrapper ApplyComplete event is fired. This is called after a bundle installation has completed. Make sure we updated the view.

OnDetectPackageComplete ( object sender, Microsoft.Tools.WindowsInstallerXml.Bootstrapper.DetectPackageCompleteEventArgs e ) : void

Method that gets invoked when the Bootstrapper DetectPackageComplete event is fired. Checks the PackageId and sets the installation scenario. The PackageId is the ID specified in one of the package elements (msipackage, exepackage, msppackage, msupackage) in the WiX bundle.

OnPlanComplete ( object sender, Microsoft.Tools.WindowsInstallerXml.Bootstrapper.PlanCompleteEventArgs e ) : void

Method that gets invoked when the Bootstrapper PlanComplete event is fired. If the planning was successful, it instructs the Bootstrapper Engine to install the packages.

Method Details

Run() protected méthode

Entry point that is called when the Bootstrapper application is ready to run.
protected Run ( ) : void
Résultat void