Installer.BeforeInstall Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit avant l’exécution de la méthode Install(IDictionary) de chaque programme d’installation contenu dans la collection de programmes d’installation.
public:
event System::Configuration::Install::InstallEventHandler ^ BeforeInstall;
public event System.Configuration.Install.InstallEventHandler BeforeInstall;
member this.BeforeInstall : System.Configuration.Install.InstallEventHandler
Public Custom Event BeforeInstall As InstallEventHandler
Type d'événement
Exemples
L’exemple suivant illustre l’événement BeforeInstall . Il est déclenché par la OnBeforeInstall méthode .
// MyInstaller is derived from the class 'Installer'.
private:
MyInstaller()
{
BeforeInstall += gcnew InstallEventHandler( this, &MyInstaller::BeforeInstallEventHandler );
}
void BeforeInstallEventHandler( Object^ sender, InstallEventArgs^ e )
{
// Add steps to perform any actions before the install process.
Console::WriteLine( "Code for BeforeInstallEventHandler" );
}
// MyInstaller is derived from the class 'Installer'.
MyInstaller() : base()
{
BeforeInstall += new InstallEventHandler(BeforeInstallEventHandler);
}
private void BeforeInstallEventHandler(object sender, InstallEventArgs e)
{
// Add steps to perform any actions before the install process.
Console.WriteLine("Code for BeforeInstallEventHandler");
}
' MyInstaller is derived from the class 'Installer'.
Sub New()
MyBase.New()
AddHandler BeforeInstall, AddressOf BeforeInstallEventHandler
End Sub
Private Sub BeforeInstallEventHandler(sender As Object, e As InstallEventArgs)
' Add steps to perform any actions before the install process.
Console.WriteLine("Code for BeforeInstallEventHandler")
End Sub
S’applique à
Voir aussi
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.