Installer.OnCommitted Method
Assembly: System.Configuration.Install (in system.configuration.install.dll)
protected void OnCommitted ( IDictionary savedState )
protected function OnCommitted ( savedState : IDictionary )
Parameters
- savedState
An IDictionary that contains the state of the computer after all the installers in the Installers property run.
This method is called after the Commit methods of all the installers contained in this instance's installer collection run.
Raising an event invokes the event handler through a delegate. For more information, see Raising an Event.
The OnCommitted method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Notes to Inheritors When overriding OnCommitted in a derived class, be sure to call the base class's OnCommitted method so that registered delegates receive the event.The following example demonstrates the OnCommitted method of the Installer class. The OnCommitted method is overridden in the derived class. Space is provided for the user to add the steps to be performed before committing and after committing.
// Override the 'OnCommitted' method. protected override void OnCommitted(IDictionary savedState) { base.OnCommitted(savedState); // Add steps to be done after committing an application. Console.WriteLine("The OnCommitted method of MyInstaller called");
// Override the 'OnCommitted' method.
protected void OnCommitted(IDictionary savedState)
{
super.OnCommitted(savedState);
// Add steps to be done after committing an application.
Console.WriteLine("The OnCommitted method of MyInstaller called");
//OnCommitted
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.