Installer.Committing Event
.NET Framework 2.0
Occurs before the installers in the Installers property committ 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 Committing event. It is raised by the OnCommitting method.
public MyInstallerClass() :base() { // Attach the 'Committing' event. this.Committing += new InstallEventHandler(MyInstaller_Committing); // Event handler for 'Committing' event. private void MyInstaller_Committing(object sender, InstallEventArgs e) { Console.WriteLine("Committing Event occured.");
public MyInstallerClass()
{
// Attach the 'Committing' event.
this.add_Committing(new InstallEventHandler(MyInstaller_Committing));
//MyInstallerClass
// Event handler for 'Committing' event.
private void MyInstaller_Committing(Object sender, InstallEventArgs e)
{
Console.WriteLine("Committing Event occured.");
//MyInstaller_Committing
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.