Installer.AfterInstall Event
Occurs after the Install methods of all the installers in the Installers property have run.
[Visual Basic] Public Event AfterInstall As InstallEventHandler [C#] public event InstallEventHandler AfterInstall; [C++] public: __event InstallEventHandler* AfterInstall;
[JScript] In JScript, you can handle the events defined by a class, but you cannot define your own.
Event Data
The event handler receives an argument of type InstallEventArgs containing data related to this event. The following InstallEventArgs property provides information specific to this event.
| Property | Description |
|---|---|
| SavedState | Gets an IDictionary that represents the current state of the installation. |
Example
[Visual Basic, C#, C++] The following example demonstrates the AfterInstall event. It is raised by the OnAfterInstall method.
[Visual Basic] ' 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 [C#] // 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"); } [C++] // MyInstaller is derived from the class 'Installer'. MyInstaller() { AfterInstall += new InstallEventHandler(this, &MyInstaller::AfterInstallEventHandler); } private: void AfterInstallEventHandler(Object* sender, InstallEventArgs* e) { // Add steps to perform any actions after the install process. Console::WriteLine(S"Code for AfterInstallEventHandler"); }
[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button
in the upper-left corner of the page.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
.NET Framework Security:
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries From Partially Trusted Code
See Also
Installer Class | Installer Members | System.Configuration.Install Namespace | BeforeInstall | OnAfterInstall | OnBeforeInstall