Occurs after the installations handled by the installers in the InstallerCollection of this instance are uninstalled.
The following declaration shows the syntax for a method that handles the AfterUninstall event.
[Visual Basic] Private Sub InstallerName_AfterUninstall( _ ByVal sender As Object, _ ByVal e As InstallEventArgs _ ) [C#] private void InstallerName_AfterUninstall( object sender, InstallEventArgs e ); [C++] private: void InstallerName_AfterUninstall( Object* sender, InstallEventArgs* e ); [JScript] private InstallerName_AfterUninstall( sender : Object, e : InstallEventArgs );
This event is raised after all of the installations handled by the installers in this instance's InstallerCollection have been uninstalled. Attach event-handling methods that need to run after the Uninstall methods have completed to this event.
Installer Class | Installer MembersTopic | System.Configuration.Install Namespace | Installer.OnAfterInstall | Installer.OnAfterRollback | Installer.OnAfterCommit | Installer.OnBeforeCommit | Installer.OnBeforeInstall | Installer.OnBeforeRollback | Installer.OnBeforeUninstall