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