NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Installer AfterUninstall Event

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
);

Parameters

sender
The source of the event.
e
An InstallEventArgs that contains the event data.

Remarks

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.

See Also

Installer Class | Installer MembersTopic | System.Configuration.Install Namespace | Installer.OnAfterInstall | Installer.OnAfterRollback | Installer.OnAfterCommit | Installer.OnBeforeCommit | Installer.OnBeforeInstall | Installer.OnBeforeRollback | Installer.OnBeforeUninstall