Installer.Commit Method
Assembly: System.Configuration.Install (in system.configuration.install.dll)
public void Commit ( IDictionary savedState )
public function Commit ( savedState : IDictionary )
Not applicable.
Parameters
- savedState
An IDictionary that contains the state of the computer after all the installers in the collection have run.
| 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 Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.