Installer.AfterInstall Event
.NET Framework 2.0
Occurs after the Install methods of all the installers in the Installers property have run.
Namespace: System.Configuration.Install
Assembly: System.Configuration.Install (in system.configuration.install.dll)
Assembly: System.Configuration.Install (in system.configuration.install.dll)
'Declaration Public Event AfterInstall As InstallEventHandler 'Usage Dim instance As Installer Dim handler As InstallEventHandler AddHandler instance.AfterInstall, handler
/** @event */ public void add_AfterInstall (InstallEventHandler value) /** @event */ public void remove_AfterInstall (InstallEventHandler value)
JScript supports the use of events, but not the declaration of new ones.
The following example demonstrates the AfterInstall event. It is raised by the OnAfterInstall method.
' MyInstaller is derived from the class 'Installer'. Sub New() MyBase.New() AddHandler AfterInstall, AddressOf AfterInstallEventHandler End Sub 'New Private Sub AfterInstallEventHandler(ByVal sender As Object, _ ByVal e As InstallEventArgs) ' Add steps to perform any actions after the install process. Console.WriteLine("Code for AfterInstallEventHandler") End Sub 'AfterInstallEventHandler
// MyInstaller is derived from the class 'Installer'.
MyInstaller()
{
this.add_AfterInstall(
new InstallEventHandler(AfterInstallEventHandler));
//MyInstaller
private void AfterInstallEventHandler(Object sender, InstallEventArgs e)
{
// Add steps to perform any actions after the install process.
Console.WriteLine("Code for AfterInstallEventHandler");
//AfterInstallEventHandler
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.
Community Additions
ADD
Show: