Installer.AfterInstall Event
.NET Framework 3.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)
The following example demonstrates the AfterInstall event. It is raised by the OnAfterInstall method.
// MyInstaller is derived from the class 'Installer'. MyInstaller() : base() { AfterInstall += new InstallEventHandler(AfterInstallEventHandler); } private void AfterInstallEventHandler(object sender, InstallEventArgs e) { // Add steps to perform any actions after the install process. Console.WriteLine("Code for 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 Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: