Installer.BeforeUninstall Událost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Nastane před tím, než instalační program ve Installers vlastnosti provede své operace odinstalace.
public:
event System::Configuration::Install::InstallEventHandler ^ BeforeUninstall;
public event System.Configuration.Install.InstallEventHandler BeforeUninstall;
member this.BeforeUninstall : System.Configuration.Install.InstallEventHandler
Public Custom Event BeforeUninstall As InstallEventHandler
Event Type
Příklady
Následující příklad ukazuje BeforeUninstall událost. Je vyvolána metodou OnBeforeUninstall .
// MyInstaller is derived from the class 'Installer'.
private:
MyInstaller()
{
BeforeUninstall += gcnew InstallEventHandler( this, &MyInstaller::BeforeUninstallEventHandler );
}
void BeforeUninstallEventHandler( Object^ sender, InstallEventArgs^ e )
{
// Add steps to perform any actions before the Uninstall process.
Console::WriteLine( "Code for BeforeUninstallEventHandler" );
}
// MyInstaller is derived from the class 'Installer'.
MyInstaller() : base()
{
BeforeUninstall += new InstallEventHandler(BeforeUninstallEventHandler);
}
private void BeforeUninstallEventHandler(object sender, InstallEventArgs e)
{
// Add steps to perform any actions before the Uninstall process.
Console.WriteLine("Code for BeforeUninstallEventHandler");
}
' MyInstaller is derived from the class 'Installer'.
Sub New()
MyBase.New()
AddHandler BeforeUninstall, AddressOf BeforeUninstallEventHandler
End Sub
Private Sub BeforeUninstallEventHandler(sender As Object, e As InstallEventArgs)
' Add steps to perform any actions before the Uninstall process.
Console.WriteLine("Code for BeforeUninstallEventHandler")
End Sub
Platí pro
Viz také
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.