Installer.Committed Event
.NET Framework 3.0
Occurs after all the installers in the Installers property have committed their installations.
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 Committed event. It is raised by the OnCommitted method.
public MyInstallerClass() :base() { // Attach the 'Committed' event. this.Committed += new InstallEventHandler(MyInstaller_Committed); } // Event handler for 'Committed' event. private void MyInstaller_Committed(object sender, InstallEventArgs e) { Console.WriteLine("Committed Event occured."); }
public MyInstallerClass()
{
// Attach the 'Committed' event.
this.add_Committed(new InstallEventHandler(MyInstaller_Committed));
} //MyInstallerClass
// Event handler for 'Committed' event.
private void MyInstaller_Committed(Object sender, InstallEventArgs e)
{
Console.WriteLine("Committed Event occured.");
} //MyInstaller_Committed
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: