Installer.Commit Method
Assembly: System.Configuration.Install (in system.configuration.install.dll)
| Exception type | Condition |
|---|---|
| The savedState parameter is a null reference (Nothing in Visual Basic). -or- The saved-state IDictionary might have been corrupted. | |
| An exception occurred during the Commit phase of the installation. This exception is ignored and the installation continues. However, the application might not function correctly after the installation is complete. |
The following example demonstrates the Commit method of the Installer class. A class is derived from the Installer base class and the Commit method are overridden.
// Override the 'Commit' method of the Installer class. public override void Commit( IDictionary mySavedState ) { base.Commit( mySavedState ); Console.WriteLine( "The Commit method of 'MyInstallerSample'" + "has been called" );
// Override the 'Commit' method of the Installer class.
public void Commit(IDictionary mySavedState)
{
super.Commit(mySavedState);
Console.WriteLine("The Commit method of 'MyInstallerSample'"
+ "has been called");
//Commit
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.