Installer.AfterUninstall Event

Occurs after all the installers in the Installers property perform their uninstallation operations.

Namespace: System.Configuration.Install
Assembly: System.Configuration.Install (in system.configuration.install.dll)

'Declaration
Public Event AfterUninstall As InstallEventHandler
'Usage
Dim instance As Installer
Dim handler As InstallEventHandler

AddHandler instance.AfterUninstall, handler

/** @event */
public void add_AfterUninstall (InstallEventHandler value)

/** @event */
public void remove_AfterUninstall (InstallEventHandler value)

JScript supports the use of events, but not the declaration of new ones.

The following example demonstrates the AfterUninstall event. It is raised by the OnAfterUninstall method.

' MyInstaller is derived from the class 'Installer'.
Sub New()
   MyBase.New()
   AddHandler AfterUninstall, AddressOf AfterUninstallEventHandler
End Sub 'New

Private Sub AfterUninstallEventHandler(sender As Object, e As InstallEventArgs)
   ' Add steps to perform any actions before the Uninstall process.
   Console.WriteLine("Code for AfterUninstallEventHandler")
End Sub 'AfterUninstallEventHandler

// MyInstaller is derived from the class 'Installer'.
MyInstaller()
{
    this.add_AfterUninstall(
        new InstallEventHandler(AfterUninstallEventHandler));
 //MyInstaller

private void AfterUninstallEventHandler(Object sender, InstallEventArgs e)
{
    // Add steps to perform any actions before the Uninstall process.
    Console.WriteLine("Code for AfterUninstallEventHandler");
 //AfterUninstallEventHandler


  • Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see .

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0, 1.1, 1.0

Community Additions

ADD
Show: