Installer.Committing Event

Occurs before the installers in the Installers property committ their installations.

Namespace: System.Configuration.Install
Assembly: System.Configuration.Install (in system.configuration.install.dll)

'Declaration
Public Event Committing As InstallEventHandler
'Usage
Dim instance As Installer
Dim handler As InstallEventHandler

AddHandler instance.Committing, handler

/** @event */
public void add_Committing (InstallEventHandler value)

/** @event */
public void remove_Committing (InstallEventHandler value)

JScript supports the use of events, but not the declaration of new ones.

The following example demonstrates the Committing event. It is raised by the OnCommitting method.

Public Sub New()
   MyBase.New()
   ' Attach the 'Committing' event.
   AddHandler Me.Committing, AddressOf MyInstaller_Committing
End Sub 'New

' Event handler for 'Committing' event.
Private Sub MyInstaller_Committing(ByVal sender As Object, _
                                   ByVal e As InstallEventArgs)
   Console.WriteLine("Committing Event occured.")
End Sub 'MyInstaller_Committing

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

  • Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see .

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.

.NET Framework

Supported in: 2.0, 1.1, 1.0

Community Additions

ADD
Show: