Installer.Committed Event
.NET Framework 2.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)
'Declaration Public Event Committed As InstallEventHandler 'Usage Dim instance As Installer Dim handler As InstallEventHandler AddHandler instance.Committed, handler
/** @event */ public void add_Committed (InstallEventHandler value) /** @event */ public void remove_Committed (InstallEventHandler value)
JScript supports the use of events, but not the declaration of new ones.
The following example demonstrates the Committed event. It is raised by the OnCommitted method.
Public Sub New() MyBase.New() ' Attach the 'Committed' event. AddHandler Me.Committed, AddressOf MyInstaller_Committed End Sub 'New ' Event handler for 'Committed' event. Private Sub MyInstaller_Committed(ByVal sender As Object, ByVal e As InstallEventArgs) Console.WriteLine("") Console.WriteLine("Committed Event occured.") Console.WriteLine("") End Sub 'MyInstaller_Committed
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 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.
Community Additions
ADD
Show: