Installer.AfterUninstall Event
.NET Framework 3.0
Occurs after all the installers in the Installers property perform their uninstallation operations.
Namespace: System.Configuration.Install
Assembly: System.Configuration.Install (in system.configuration.install.dll)
Assembly: System.Configuration.Install (in system.configuration.install.dll)
The following example demonstrates the AfterUninstall event. It is raised by the OnAfterUninstall method.
// MyInstaller is derived from the class 'Installer'. MyInstaller() : base() { AfterUninstall += new InstallEventHandler(AfterUninstallEventHandler); } private void AfterUninstallEventHandler(object sender, InstallEventArgs e) { // Add steps to perform any actions before the Uninstall process. Console.WriteLine("Code for AfterUninstallEventHandler"); }
// MyInstaller is derived from the class 'Installer'.
MyInstaller()
{
this.add_AfterUninstall(
new InstallEventHandler(AfterUninstallEventHandler));
} //MyInstaller
private void AfterUninstallEventHandler(Object sender, InstallEventArgs e)
{
// Add steps to perform any actions before the Uninstall process.
Console.WriteLine("Code for AfterUninstallEventHandler");
} //AfterUninstallEventHandler
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: