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