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